/*
 * Club IO — auth.css
 * Ultraviolet (OLED nightclub glass). Parity with cio-theme-tokens / DESIGN.md.
 * Ultraviolet — Crimson retired.
 */

:root {
  --cio-brand:       #7C5CFF;
  --cio-brand-dark:  #5B3FE0;
  --cio-brand-light: #EEE8FF;
  --cio-brand-mid:   #9B84FF;
  --cio-live:        #37E0D8;

  --cio-page:        #08080C;
  --cio-surface:     #14141F;
  --cio-surface2:    #1D1D2C;
  --cio-border:      #2C2C40;
  --cio-border-hi:   #3A3A52;

  --cio-text:        #F4F3F8;
  --cio-mute:        #9997B0;
  --cio-label:       #B5B3C2;
  --cio-ink:         #050509;
  --cio-blue:        #6AA8FF;
  --cio-faint:       #6F6D86;

  --cio-success:     #3DDC97;
  --cio-warning:     #FFC24B;
  --cio-danger:      #FF6B6B;

  --cio-auth-page-photo: url('/images/auth/auth-page-angle.jpg');
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  color: var(--cio-text);
  position: relative;
  isolation: isolate;
}

/* Full-page nightlife photo — behind shell, tabs, and panels */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--cio-auth-page-photo) center 42% / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04) brightness(0.94);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg,
      rgba(10, 10, 11, 0.68) 0%,
      rgba(10, 10, 11, 0.34) 44%,
      rgba(10, 10, 11, 0.76) 100%),
    radial-gradient(ellipse 70% 55% at 14% 30%,
      color-mix(in srgb, var(--cio-brand) 18%, transparent),
      transparent 58%),
    radial-gradient(ellipse 60% 50% at 72% 40%,
      color-mix(in srgb, var(--cio-brand) 12%, transparent),
      transparent 62%);
  pointer-events: none;
}

.auth-shell {
  max-width: 1320px;
  margin: 28px auto;
  padding: 24px;
  background: rgba(20, 20, 31, 0.88);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  border: 1px solid rgba(44, 44, 64, 0.9);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(5, 5, 9, 0.55),
    0 8px 24px rgba(5, 5, 9, 0.35),
    0 0 0 1px color-mix(in srgb, var(--cio-brand) 12%, transparent);
}

.auth-tabs {
  width: 320px;
  margin: 0 auto 24px;
  position: relative;
  background: rgba(29, 29, 44, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--cio-border);
  border-radius: 999px;
  padding: 4px;
  display: flex;
  box-shadow: 0 8px 24px rgba(5, 5, 9, 0.35);
}

.auth-tab {
  flex: 1;
  border: none;
  background: none;
  padding: 9px 0;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  cursor: pointer;
  color: var(--cio-mute);
  transition: color .2s;
}
.auth-tab.active { color: var(--cio-text); }

#auth-slider {
  position: absolute;
  inset: 4px auto 4px 4px;
  width: calc(50% - 4px);
  background: var(--cio-surface);
  border: 1px solid var(--cio-border-hi);
  border-radius: 999px;
  transition: transform .25s ease;
  z-index: 1;
  box-shadow: 0 1px 4px rgba(10, 10, 11, 0.08);
}

/* Layout — Bootstrap row/col + flex children (do not set display:grid on .auth-row) */
.auth-row > [class*="col-"] {
  display: flex;
  min-width: 0;
}

#login-col > .auth-state-container,
#login-col > div {
  width: 100%;
}

#wizard-col {
  width: 100%;
}

#wizard-col:not(.d-none) {
  display: flex;
}

@media (min-width: 992px) {
  #login-col {
    min-width: 320px;
  }
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.me-2 { margin-right: 0.5rem; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.d-none { display: none !important; }

.alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.alert-success {
  background: color-mix(in srgb, var(--cio-success) 14%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--cio-success) 28%, transparent) !important;
  color: var(--cio-success) !important;
}

.panel {
  width: 100%;
  background: var(--cio-surface);
  border: 1px solid var(--cio-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(10, 10, 11, 0.06);
}
.hero-panel.panel {
  padding: 28px 32px 24px;
}

.login-panel {
  background: var(--cio-surface);
  border-color: var(--cio-border);
}

.login-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cio-text);
  margin: 0 0 4px;
}
.login-subtitle {
  font-size: 0.85rem;
  color: var(--cio-mute);
  margin: 0 0 24px;
}

.form-label {
  color: var(--cio-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.form-control {
  background: var(--cio-surface) !important;
  border: 1px solid var(--cio-border-hi) !important;
  border-radius: 10px !important;
  color: var(--cio-text) !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  background: var(--cio-surface) !important;
  border-color: var(--cio-brand) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cio-brand) 12%, transparent) !important;
  outline: none;
}
.form-control::placeholder { color: var(--cio-mute) !important; }

.btn-primary {
  background: var(--cio-brand) !important;
  border: none !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.03em !important;
  padding: 11px 28px !important;
  width: auto !important;
  max-width: 22rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--cio-brand) 40%, transparent) !important;
  transition: background .15s, box-shadow .2s, transform .1s;
}
.login-panel .btn-primary,
.reset-panel .btn-primary {
  width: 100% !important;
  max-width: 22rem;
}
.btn-primary:hover {
  background: var(--cio-brand-dark) !important;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--cio-brand) 48%, transparent) !important;
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-link {
  color: var(--cio-brand) !important;
  font-size: 0.83rem !important;
  text-decoration: none !important;
}
.btn-link:hover { text-decoration: underline !important; }

.hero-panel {
  background: var(--cio-ink);
  border: 1px solid color-mix(in srgb, var(--cio-brand) 22%, transparent);
  color: var(--cio-text);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  padding: 28px 32px 24px;
}

.hero-panel--club-io {
  background: var(--cio-ink);
  color: var(--cio-text);
}

.hero-panel--club-io::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 520px 280px at 18% -10%, color-mix(in srgb, var(--cio-brand) 38%, transparent), transparent 68%),
    radial-gradient(ellipse 360px 200px at 100% 100%, color-mix(in srgb, var(--cio-brand) 14%, transparent), transparent 70%);
  pointer-events: none;
}

.hero-top {
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.hero-top img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(100%, 280px);
  object-fit: contain;
  object-position: left center;
}

.hero-body {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--cio-text);
  letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--cio-brand-mid); }

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(244, 243, 248, 0.72);
  margin: 0 0 28px;
  line-height: 1.6;
}

.cio-status-bar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(244, 243, 248, 0.90);
  letter-spacing: 0.04em;
}
.cio-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cio-live);
  box-shadow: 0 0 8px color-mix(in srgb, var(--cio-live) 70%, transparent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.hero-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}
.hero-metric-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cio-text);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-metric-label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  color: rgba(244, 243, 248, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-pill {
  background: color-mix(in srgb, var(--cio-brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cio-brand) 28%, transparent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(244, 243, 248, 0.92);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-pill i { color: var(--cio-brand-mid); font-size: 0.85em; }

.brand-mark {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.brand-mark-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: var(--cio-ink);
  border-radius: 12px;
  border: 1px solid var(--cio-border);
}
.brand-mark-tile img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.brand-mark-text {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cio-mute);
}

.alert-danger {
  background: var(--cio-danger-bg, #FBE9E4) !important;
  border: 1px solid color-mix(in srgb, var(--cio-danger) 20%, transparent) !important;
  color: var(--cio-danger) !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
}
.invalid-feedback { color: var(--cio-danger) !important; font-size: 0.78rem !important; }
.is-invalid { border-color: color-mix(in srgb, var(--cio-danger) 45%, transparent) !important; }

.auth-state { display: none; }
.auth-state.active { display: block; }

@media (max-width: 991px) {
  .auth-shell { margin: 16px; padding: 18px; }
  #hero-col { display: none; }
  .login-panel { padding: 24px 20px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  body::before { transform: scale(1.12); }
}
@media (max-width: 480px) {
  .auth-tabs { width: 100%; }
  .auth-shell { margin: 0; border-radius: 0; min-height: 100vh; padding: 16px; }
  body::after {
    background:
      linear-gradient(180deg,
        rgba(10, 10, 11, 0.82) 0%,
        rgba(10, 10, 11, 0.68) 100%);
  }
}

/* ── Login panel wordmark + shared auth chrome ─────────────────────────────── */
.login-panel,
.reset-panel {
  max-width: 420px;
  margin: auto;
  width: 100%;
}

.panel-logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}

.auth-brand-mark--dark {
  background: var(--cio-ink);
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-brand-mark--panel {
  margin: -32px -32px 20px;
  padding: 20px 32px;
  border-radius: 16px 16px 0 0;
}

.auth-brand-mark--panel .panel-logo {
  margin: 0;
  height: 40px;
  width: auto;
  max-width: 260px;
}

.auth-brand-mark--wizard {
  padding: 8px 12px;
  border-radius: 12px;
  flex-shrink: 0;
}

.auth-brand-mark--wizard .wizard-logo {
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.login-panel--platform .panel-logo {
  max-width: 260px;
}

/* Reset / wizard panels keep Club IO left-aligned titles */
.reset-panel .login-title,
.reset-panel .login-subtitle {
  text-align: left;
}

.btn-primary-auth {
  width: 100%;
  max-width: 22rem;
  border: none;
  border-radius: 8px;
  background: var(--cio-brand) !important;
  color: #fff !important;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--cio-brand) 40%, transparent);
  transition: background .15s, box-shadow .2s, transform .1s;
}
.btn-primary-auth:hover:not(:disabled) {
  background: var(--cio-brand-dark) !important;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--cio-brand) 48%, transparent);
  transform: translateY(-1px);
}
.btn-primary-auth:disabled { opacity: .65; cursor: not-allowed; }

.auth-link { color: var(--cio-brand); text-decoration: none; }
.auth-link:hover { text-decoration: underline; }

.auth-footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--cio-mute);
}
.auth-footnote a { color: var(--cio-brand); text-decoration: none; }
.auth-footnote a:hover { text-decoration: underline; }

.alert-auth {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.alert-auth-danger  { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.alert-auth-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
.alert-auth-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #2563eb; }

.auth-state-container { position: relative; }

.auth-state.active {
  animation: fadeInSlide .3s ease;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.auth-state-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cio-mute);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .2s;
}
.auth-state-back:hover { color: var(--cio-text); }

.reset-progress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 18px 0 26px;
  position: relative;
}
.reset-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--cio-border);
  z-index: 0;
}
.reset-progress-step { text-align: center; flex: 1; z-index: 1; }

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cio-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-weight: 600;
  font-size: 0.875rem;
}
.reset-progress-step.active .step-circle {
  background: var(--cio-brand);
  color: #fff;
  border-color: var(--cio-brand);
}
.reset-progress-step.complete .step-circle {
  background: var(--cio-success);
  color: #fff;
  border-color: var(--cio-success);
}

.step-label { font-size: 0.72rem; color: var(--cio-mute); }
.reset-progress-step.active .step-label,
.reset-progress-step.complete .step-label {
  color: var(--cio-text);
  font-weight: 600;
}

.code-input {
  font-size: 1.75rem !important;
  letter-spacing: 0.5rem !important;
  text-align: center !important;
  font-weight: 700 !important;
}

/* ── Registration wizard ─────────────────────────────────────────────────── */
.wizard-panel { display: flex; flex-direction: column; gap: 20px; }

.wizard-facts-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 10px 14px;
  background: var(--cio-brand-light);
  border: 1px solid color-mix(in srgb, var(--cio-brand) 22%, transparent);
  border-radius: 10px;
  font-size: 0.8rem;
}
.wf-row { display: flex; align-items: baseline; gap: 5px; }
.wf-label { color: var(--cio-brand-dark); font-weight: 600; white-space: nowrap; }
.wf-label::after { content: ':'; }
.wf-value { color: var(--cio-text); }

.wizard-panel .form-control[readonly] {
  background-color: var(--cio-surface2);
  color: var(--cio-text);
  cursor: not-allowed;
  border-color: var(--cio-border);
}

.wizard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cio-border);
}

.wizard-logo { height: 34px; width: auto; object-fit: contain; max-width: 220px; }
.wizard-title { font-size: 1.1rem; font-weight: 700; color: var(--cio-text); margin-bottom: 2px; }
.wizard-subtitle { font-size: 0.8rem; color: var(--cio-mute); }

.wizard-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  border-radius: 14px;
  background: var(--cio-surface2);
  border: 1px solid var(--cio-border);
}

.wizard-step {
  border: 1px solid var(--cio-border);
  background: var(--cio-surface);
  color: var(--cio-label);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: default;
  transition: background .2s, color .2s, border-color .2s;
}
.wizard-step.active {
  background: var(--cio-brand);
  border-color: var(--cio-brand);
  color: #fff;
}
.wizard-step.done {
  background: #E6F4EC;
  border-color: color-mix(in srgb, var(--cio-success) 35%, transparent);
  color: var(--cio-success);
}

.wizard-pages {
  border: 1px solid var(--cio-border);
  border-radius: 16px;
  padding: 24px;
}
.wizard-page { display: none; }
.wizard-page.active { display: block; animation: fadeInSlide .25s ease; }

.wizard-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.plan-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}
.plan-cards-grid .plan-type-heading {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cio-mute);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cio-border);
}
.plan-cards-grid .plan-type-heading:first-child { margin-top: 0; }

.plan-card {
  background: var(--cio-surface);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  border: 2px solid var(--cio-border);
  box-shadow: 0 2px 12px rgba(10, 10, 11, 0.06);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 10, 11, 0.1);
}
.plan-card.selected {
  border-color: var(--cio-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cio-brand) 18%, transparent);
}
.plan-card.featured { border-color: color-mix(in srgb, var(--cio-brand) 55%, transparent); }

.plan-card-badge {
  display: inline-block;
  background: var(--cio-brand-light);
  color: var(--cio-brand-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card-name { font-size: 1rem; font-weight: 700; color: var(--cio-text); }
.plan-card-desc { color: var(--cio-mute); font-size: 0.8125rem; margin-top: 4px; line-height: 1.4; }

.plan-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cio-text);
  margin: 10px 0;
}
.plan-card-price small { font-size: 0.875rem; font-weight: 400; color: var(--cio-mute); }

.text-muted { color: var(--cio-mute) !important; }

/* Club IO hero — licensing plan strip */
.cio-hero-plans {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cio-hero-plans-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}
.cio-hero-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}
.cio-hero-plan {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cio-hero-plan strong {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}
.cio-hero-plan span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
}
.cio-hero-plan span small {
  font-size: 0.75rem;
  opacity: 0.85;
}
