:root {
  --bg: #05080d;
  --bg-alt: rgba(20, 25, 34, 0.75);
  --bg-card: rgba(19, 27, 38, 0.6);
  --border: rgba(78, 118, 150, 0.35);
  --text: #f3f7ff;
  --muted: rgba(203, 219, 236, 0.76);
  --accent: #00d4b4;
  --accent-strong: #00a8ff;
  --shadow: 0 24px 48px rgba(3, 8, 20, 0.55);
  --radius: 18px;
  --transition: 0.2s ease;
  color-scheme: dark;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at 18% -10%, rgba(0, 218, 196, 0.16), transparent 55%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 18, 0.82);
  border-bottom: 1px solid rgba(53, 76, 94, 0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  height: 40px;
}

.brand-title {
  color: var(--accent);
}

.primary-nav {
  display: inline-flex;
  gap: 18px;
  margin-left: auto;
}



.nav-link {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}


.header-login {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(12, 18, 26, 0.7);
  border: 1px solid rgba(101, 145, 182, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: var(--muted);
  font-size: 0.85rem;
}

.login-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  line-height: 1.3;
}

.login-actions {
  display: inline-flex;
  gap: 8px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(101, 145, 182, 0.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02272b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-btn:hover {
  transform: translateY(-1px);
}

.header-btn.secondary {
  background: transparent;
  color: var(--muted);
}

.header-btn.secondary:hover {
  background: rgba(0, 167, 255, 0.14);
  color: var(--text);
}

.header-btn[disabled],
.header-btn[disabled]:hover {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: rgba(16, 26, 36, 0.6);
  color: var(--muted);
  border: 1px solid rgba(101, 145, 182, 0.3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.hero {
  padding: 72px 24px 48px;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  text-align: center;
  backdrop-filter: blur(18px);
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #032a2f;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 180, 255, 0.35);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.grid-main {
  grid-column: span 8;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 24px;
}

.grid-aside {
  grid-column: span 4;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(122, 158, 182, 0.28);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  backdrop-filter: blur(14px);
}

.card h2 {
  margin: 0 0 18px;
  font-size: 1.4rem;
  color: var(--accent);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.list li {
  position: relative;
  padding-left: 20px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.contact-list a {
  color: var(--text);
}

.contact-list a:hover {
  color: var(--accent-strong);
}

.grid-main > .card {
  grid-column: span 8;
}

.grid-main > .card:nth-child(n + 3) {
  grid-column: span 8;
}

.twitch-card {
  position: sticky;
  top: 104px;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.card-header img {
  height: 32px;
  align-self: flex-start;
}

.twitch-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  background: #000;
}

.twitch-fallback {
  display: flex;
  justify-content: flex-start;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(101, 145, 182, 0.45);
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.secondary-btn:hover {
  color: var(--text);
  background: rgba(0, 167, 255, 0.14);
}

.site-footer {
  padding: 32px 24px;
  text-align: center;
  color: rgba(200, 215, 230, 0.6);
  font-size: 0.9rem;
  border-top: 1px solid rgba(53, 76, 94, 0.3);
  background: rgba(8, 12, 18, 0.82);
  backdrop-filter: blur(12px);
  margin-top: auto;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid-main {
    grid-column: span 12;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .grid-main > .card {
    grid-column: span 12;
  }

  .grid-aside {
    grid-column: span 12;
  }

  .twitch-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav {
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
  }

  .header-login {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
  }

  .login-copy {
    max-width: none;
  }

  .login-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 56px 16px 36px;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .content-grid {
    padding: 0 16px 64px;
  }

  .card {
    padding: 24px;
  }
}


.login-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  line-height: 1.3;
}

.login-actions {
  display: inline-flex;
  gap: 8px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(101, 145, 182, 0.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02272b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-btn:hover {
  transform: translateY(-1px);
}

.header-btn.secondary {
  background: transparent;
  color: var(--muted);
}

.header-btn.secondary:hover {
  background: rgba(0, 167, 255, 0.14);
  color: var(--text);
}

.header-btn[disabled],
.header-btn[disabled]:hover {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: rgba(16, 26, 36, 0.6);
  color: var(--muted);
  border: 1px solid rgba(101, 145, 182, 0.3);
}

.header-login input {
  background: rgba(8, 12, 18, 0.8);
  border: 1px solid rgba(101, 145, 182, 0.35);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 0.85rem;
  min-width: 120px;
}

.header-login input::placeholder {
  color: var(--muted);
}

.header-login input:focus {
  outline: none;
  border-color: #00bfa6;
  box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.2);
}
.login-copy {
    max-width: none;
  }

  .login-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 56px 16px 36px;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .content-grid {
    padding: 0 16px 64px;
  }

  .card {
    padding: 24px;
  }
}


  .primary-nav {
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0;
  }

  .header-login {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(12, 18, 26, 0.7);
  border: 1px solid rgba(101, 145, 182, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: var(--muted);
  font-size: 0.85rem;
}

.login-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  line-height: 1.3;
}

.login-actions {
  display: inline-flex;
  gap: 8px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(101, 145, 182, 0.45);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #02272b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-btn:hover {
  transform: translateY(-1px);
}

.header-btn.secondary {
  background: transparent;
  color: var(--muted);
}

.header-btn.secondary:hover {
  background: rgba(0, 167, 255, 0.14);
  color: var(--text);
}

.header-btn[disabled],
.header-btn[disabled]:hover {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  background: rgba(16, 26, 36, 0.6);
  color: var(--muted);
  border: 1px solid rgba(101, 145, 182, 0.3);
}

.header-login input {
  background: rgba(8, 12, 18, 0.8);
  border: 1px solid rgba(101, 145, 182, 0.35);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--text);
  font-size: 0.85rem;
  min-width: 120px;
}

.header-login input::placeholder {
  color: var(--muted);
}

.header-login input:focus {
  outline: none;
  border-color: #00bfa6;
  box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.2);
}
.header-login input {
    flex: 1 1 160px;
    min-width: 0;
  }

  .header-btn {
    flex: 1 1 120px;
  }

  .hero {
    padding: 56px 16px 36px;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .content-grid {
    padding: 0 16px 64px;
  }

  .card {
    padding: 24px;
  }
}


@media (max-width: 480px) {
  .hero-content {
    padding: 28px 20px;
  }

  .cta {
    width: 100%;
  }

  .login-actions {
    flex-direction: column;
    width: 100%;
    gap: 6px;
  }

  .header-btn {
    width: 100%;
  }
}



  .cta {
    width: 100%;
  }

  .header-login input,
  .header-btn {
    flex: 1 1 100%;
  }
}














/* ---------- Guide Layout & Materials ---------- */
.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.secondary-cta {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(0, 167, 255, 0.35);
  box-shadow: none;
}

.secondary-cta:hover {
  background: rgba(0, 167, 255, 0.14);
  color: var(--text);
}

.guide-main {
  flex: 1;
  padding: 40px 24px 72px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 360px;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.guide-sidebar,
.guide-materials {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-card,
.materials-card,
.expedition-card,
.station-card,
.progress-card {
  border: 1px solid rgba(78, 118, 150, 0.25);
  background: linear-gradient(135deg, rgba(10, 17, 26, 0.9), rgba(6, 9, 14, 0.65));
  box-shadow: 0 16px 32px rgba(4, 9, 18, 0.45);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-card h2,
.materials-card h2,
.expedition-card h2,
.progress-card h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--accent);
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(78, 118, 150, 0.25);
  background: rgba(8, 12, 18, 0.75);
  font-size: 0.9rem;
  transition: border var(--transition), transform var(--transition);
}

.social-links a:hover {
  border-color: rgba(0, 212, 180, 0.45);
  transform: translateX(4px);
}

.guide-side-intro {
  gap: 16px;
  max-width: 320px;
  width: 100%;
}

.guide-side-intro h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  hyphens: auto;
}

@supports (text-wrap: balance) {
  .guide-side-intro h1 {
    text-wrap: balance;
  }
}

.guide-side-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.guide-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-source-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.guide-source-note a {
  color: var(--accent-strong);
  text-decoration: underline;
}

.guide-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-heading h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.station-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.station-card {
  gap: 12px;
}

.station-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.station-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.station-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.station-control select {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(101, 145, 182, 0.35);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--text);
}

.station-next {
  background: rgba(8, 12, 18, 0.75);
  border: 1px solid rgba(78, 118, 150, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.station-next-title {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--accent);
}

.station-next-reqs,
.station-reqs,
.stage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.station-next-reqs li,
.station-reqs li,
.stage-reqs li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.station-next-reqs span,
.station-reqs span,
.stage-reqs span {
  color: var(--accent);
  font-weight: 600;
}

.station-levels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.station-level {
  border: 1px solid rgba(78, 118, 150, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(8, 12, 18, 0.65);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.station-level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.status-chip.is-complete {
  background: rgba(0, 212, 180, 0.18);
  border-color: rgba(0, 212, 180, 0.4);
  color: var(--accent);
}

.status-chip.is-pending {
  background: rgba(255, 174, 0, 0.18);
  border-color: rgba(255, 174, 0, 0.35);
  color: #ffd27a;
}

.stage-list {
  gap: 12px;
}

.stage-item {
  border: 1px solid rgba(78, 118, 150, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(8, 12, 18, 0.65);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-item.is-complete {
  border-color: rgba(0, 212, 180, 0.4);
}

.card-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.materials-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.materials-search {
  flex: 0 0 220px;
  width: 100%;
}

.materials-search input {
  width: 100%;
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(101, 145, 182, 0.35);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text);
}

.materials-controls {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.materials-legend {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legend-chip {
  --legend-border: rgba(78, 118, 150, 0.35);
  --legend-fill: rgba(78, 118, 150, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--legend-border);
  background: rgba(9, 14, 21, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.legend-chip.is-workshop {
  --legend-border: rgba(0, 212, 180, 0.45);
  --legend-fill: rgba(0, 212, 180, 0.22);
  color: var(--accent);
}

.legend-chip.is-expedition {
  --legend-border: rgba(0, 168, 255, 0.45);
  --legend-fill: rgba(0, 168, 255, 0.24);
  color: var(--accent-strong);
}

.legend-chip.is-both {
  --legend-border: rgba(203, 219, 236, 0.35);
  --legend-fill: rgba(203, 219, 236, 0.24);
}

.legend-chip.is-active {
  background: var(--legend-fill);
  border-color: var(--legend-border);
  box-shadow: 0 10px 20px rgba(3, 8, 20, 0.3);
}

.legend-chip:hover {
  box-shadow: 0 8px 18px rgba(3, 8, 20, 0.25);
}

.legend-chip:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.material-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.materials-table th:nth-child(2),
.materials-table td[data-label="Workshop"],
.materials-table th:nth-child(3),
.materials-table td[data-label="Expedition"] {
  text-align: center;
}

.scope-chip {
  --scope-border: rgba(78, 118, 150, 0.4);
  --scope-fill: rgba(78, 118, 150, 0.2);
  --scope-text: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--scope-border);
  background: rgba(7, 12, 18, 0.88);
  color: var(--scope-text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.scope-chip.is-workshop {
  --scope-border: rgba(0, 212, 180, 0.55);
  --scope-fill: rgba(0, 212, 180, 0.24);
  --scope-text: var(--accent);
}

.scope-chip.is-expedition {
  --scope-border: rgba(0, 168, 255, 0.55);
  --scope-fill: rgba(0, 168, 255, 0.26);
  --scope-text: var(--accent-strong);
}

.scope-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(3, 8, 20, 0.3);
}

.scope-chip:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.scope-chip.is-ready {
  background: rgba(7, 12, 18, 0.75);
  border-style: dashed;
}

.scope-chip.is-workshop.is-ready {
  background: rgba(0, 212, 180, 0.08);
}

.scope-chip.is-expedition.is-ready {
  background: rgba(0, 168, 255, 0.08);
}

.scope-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--scope-fill);
  color: var(--scope-text);
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.scope-chip.is-ready .scope-chip-count {
  background: transparent;
  border: 1px solid var(--scope-border);
  color: var(--scope-text);
}

.scope-none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  font-size: 0.85rem;
  color: rgba(203, 219, 236, 0.45);
}
