:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-2: #0b1020;
  --panel: rgba(15, 22, 35, 0.78);
  --panel-2: rgba(21, 31, 49, 0.78);
  --text: #f4f7ff;
  --muted: #a8b3c7;
  --soft: #dce5ff;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #5865f2;
  --accent-2: #57f287;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(88, 101, 242, 0.24),
      transparent 30rem
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(87, 242, 135, 0.12),
      transparent 30rem
    ),
    linear-gradient(145deg, #070b12 0%, #090e18 55%, #07120f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 86px 86px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 72%,
      transparent
    );
  opacity: 0.16;
}

body::after {
  content: "";
  position: fixed;
  width: 72vw;
  height: 72vw;
  max-width: 980px;
  max-height: 980px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(88, 101, 242, 0.16),
      transparent 68%
    );
  filter: blur(52px);
  opacity: 0.55;
}

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

.nav,
main,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.nav nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
}

.nav nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 430px);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  padding: 36px 0 84px;
}

.hero-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(88, 101, 242, 0.44);
  background: rgba(88, 101, 242, 0.13);
  color: #dbe0ff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(4rem, 8.1vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  background:
    linear-gradient(180deg, #ffffff 0%, #cfd6ff 45%, #8b96ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 650;
  line-height: 1.72;
}

.hero-actions,
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 15px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button.primary {
  background:
    linear-gradient(135deg, #5865f2 0%, #735dff 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 46px rgba(88, 101, 242, 0.36);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.button.primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 20px 60px rgba(88, 101, 242, 0.48);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
}

.hero-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-panel,
.step-card,
.command-card,
.feature-grid article,
.beta-panel,
.page-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(13, 19, 31, 0.78);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.30),
    0 0 88px rgba(88, 101, 242, 0.06);
  backdrop-filter: blur(18px);
}

.product-panel {
  overflow: hidden;
  border-radius: 28px;
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.panel-body {
  padding: 28px;
}

.panel-label {
  margin: 0 0 12px;
  color: #ccd3ff;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
}

.panel-body h2 {
  margin: 0 0 22px;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.status-list span {
  color: var(--muted);
  font-weight: 800;
}

.status-list strong {
  color: #dfffe9;
  font-size: 0.88rem;
}

.panel-note {
  margin: 22px 0 0;
  color: var(--muted);
}

.section {
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.section-heading {
  max-width: 620px;
}

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.beta-panel h2 {
  margin: 16px 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading p,
.beta-panel p,
.step-card p,
.feature-grid p,
.page-card p,
.page-card li {
  color: var(--muted);
}

.quickstart {
  padding-top: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  border-radius: 24px;
  padding: 24px;
}

.step-card.featured {
  border-color: rgba(88, 101, 242, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(88, 101, 242, 0.14),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(13, 19, 31, 0.78);
}

.step-card > span,
.feature-grid article > span {
  color: #cdd3ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.step-card h3,
.feature-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.step-card p {
  min-height: 54px;
  margin: 0 0 18px;
}

code {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 25, 39, 0.78);
  color: #dbe4ff;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.command-card {
  display: grid;
  gap: 18px;
  border-radius: 26px;
  padding: 24px;
}

.command-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.command-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.command-row span {
  width: 100%;
  color: var(--soft);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 190px;
  border-radius: 24px;
  padding: 24px;
}

.feature-grid p {
  margin: 0;
}

.beta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 30px;
  padding: 34px;
  margin-bottom: 84px;
}

.beta-panel p {
  max-width: 650px;
  margin: 0;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  color: var(--muted);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--text);
}

.page-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.page-card {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
}

.page-card h1 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.page-card h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.page-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 13vw, 6.2rem);
  }

  .hero-tags {
    justify-content: center;
  }

  .product-panel {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .beta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav nav a {
    padding-inline: 10px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-actions,
  .beta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .status-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* discord pass 36 */

.nav nav a.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f4f7ff;
  background:
    linear-gradient(
      135deg,
      rgba(88, 101, 242, 0.32),
      rgba(115, 93, 255, 0.20)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav nav a.discord-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #57f287;
  box-shadow: 0 0 16px rgba(87, 242, 135, 0.7);
}

.nav nav a.discord-link:hover {
  background:
    linear-gradient(
      135deg,
      rgba(88, 101, 242, 0.42),
      rgba(115, 93, 255, 0.28)
    );
}

.discord-button {
  gap: 8px;
}

.discord-button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #57f287;
  box-shadow: 0 0 16px rgba(87, 242, 135, 0.7);
}

@media (max-width: 680px) {
  .nav nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* dashboard shell pass 39 */

.nav nav a.dashboard-link {
  color: #f4f7ff;
  background:
    linear-gradient(
      135deg,
      rgba(87, 242, 135, 0.18),
      rgba(88, 101, 242, 0.22)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.dashboard-hero {
  min-height: 56vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 48px 0 84px;
}

.dashboard-hero h1 {
  margin: 18px 0;
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.dashboard-hero h1 span {
  display: block;
  background:
    linear-gradient(180deg, #ffffff, #8f98ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dashboard-hero p {
  max-width: 620px;
  color: var(--muted);
}

.dashboard-login-card,
.dashboard-sidebar,
.dashboard-panel,
.module-grid article {
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(13, 19, 31, 0.78);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.30),
    0 0 88px rgba(88, 101, 242, 0.06);
  backdrop-filter: blur(18px);
}

.dashboard-login-card {
  border-radius: 28px;
  padding: 28px;
}

.dashboard-login-card h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.dashboard-login-card button:disabled,
.module-grid button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 90px;
}

.dashboard-sidebar {
  position: sticky;
  top: 18px;
  border-radius: 26px;
  padding: 22px;
}

.dashboard-sidebar p {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-sidebar h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.dashboard-sidebar > span {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.15);
  color: #dbe0ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.dashboard-menu {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.dashboard-menu a {
  padding: 10px 12px;
  border-radius: 13px;
  color: var(--muted);
  font-weight: 850;
}

.dashboard-menu a.active,
.dashboard-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.dashboard-content {
  display: grid;
  gap: 22px;
}

.dashboard-panel {
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.dashboard-panel h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.dashboard-panel p {
  color: var(--muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.dashboard-stats article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-stats span,
.module-grid p {
  color: var(--muted);
}

.dashboard-stats strong {
  display: block;
  margin-top: 6px;
  color: #dfffe9;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.module-grid article {
  border-radius: 20px;
  padding: 20px;
}

.module-grid h3 {
  margin: 0 0 8px;
  letter-spacing: -0.035em;
}

.module-grid button {
  margin-top: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 980px) {
  .dashboard-hero,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-stats,
  .module-grid {
    grid-template-columns: 1fr;
  }
}
/* dashboard foundation pass 40 */

.server-switcher-label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.server-picker {
  position: relative;
  width: 100%;
  z-index: 8;
}

.server-picker-button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 25, 0.82);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 12px 28px rgba(0, 0, 0, 0.20);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.server-picker-button:hover,
.server-picker.is-open .server-picker-button {
  border-color: rgba(88, 101, 242, 0.50);
  background:
    linear-gradient(180deg, rgba(88, 101, 242, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(9, 14, 25, 0.88);
}

.server-picker-button:focus-visible {
  outline: 3px solid rgba(88, 101, 242, 0.36);
  outline-offset: 3px;
}

.server-picker-button:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.server-picker-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #dbe0ff;
  background: rgba(88, 101, 242, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.server-picker.is-open .server-picker-chevron {
  transform: rotate(180deg);
  background: rgba(87, 242, 135, 0.16);
}

.server-picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  max-height: 230px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(23, 34, 53, 0.98), rgba(11, 16, 28, 0.98));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(88, 101, 242, 0.10) inset;
  backdrop-filter: blur(18px);
}

.server-picker.is-open .server-picker-menu {
  display: grid;
  gap: 5px;
}

.server-picker-option {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.server-picker-option:hover,
.server-picker-option[aria-selected="true"] {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.22), rgba(87, 242, 135, 0.08));
}

.server-picker-menu::-webkit-scrollbar {
  width: 8px;
}

.server-picker-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.module-grid article {
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.module-grid article:hover,
.module-grid article.is-selected {
  transform: translateY(-2px);
  border-color: rgba(87, 242, 135, 0.38);
  background:
    linear-gradient(
      180deg,
      rgba(87, 242, 135, 0.08),
      rgba(88, 101, 242, 0.055)
    ),
    rgba(13, 19, 31, 0.82);
}

.dashboard-detail-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(87, 242, 135, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(87, 242, 135, 0.08),
      rgba(255, 255, 255, 0.035)
    );
}

.dashboard-detail-card h3 {
  margin: 10px 0;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.contract-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.contract-box span {
  width: 100%;
  color: var(--muted);
  font-weight: 900;
}

.contract-box code {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #dfffe9;
  font-size: 0.85rem;
}

.preview-note {
  margin-top: 16px;
  font-size: 0.95rem;
}

.auth-flow-list {
  display: none;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.auth-flow-list.is-open {
  display: grid;
  gap: 8px;
}


/* dashboard settings live pass 50 */

#dashboard-settings-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-field {
  display: grid;
  gap: 8px;
}

.dashboard-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.dashboard-field select {
  min-height: 42px;
  padding: 0 42px 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #dbe0ff 50%) right 18px center / 6px 6px no-repeat,
    linear-gradient(135deg, #dbe0ff 50%, transparent 50%) right 12px center / 6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 25, 0.82);
  color: var(--text);
  font-weight: 850;
}

.dashboard-field select:focus {
  outline: 3px solid rgba(88, 101, 242, 0.30);
  outline-offset: 2px;
  border-color: rgba(88, 101, 242, 0.50);
}

.dashboard-field option {
  color: #0b1020;
}

/* dashboard hardening pass 51 */

.dashboard-readiness-card {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.dashboard-readiness-card strong {
  color: var(--text);
}

.dashboard-readiness-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* dashboard UI polish pass 54 */
html {
  scroll-behavior: smooth;
}

.dashboard-menu a[aria-current="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.dashboard-detail-card {
  scroll-margin-top: 24px;
}

.server-picker.is-disabled {
  opacity: 0.82;
}

/* dashboard nav stability emergency fix */
.dashboard-panel,
.dashboard-detail-card {
  scroll-margin-top: 28px;
}

/* dashboard session controls */
.dashboard-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.dashboard-auth-actions .button {
  text-decoration: none;
}

.dashboard-login-card strong {
  color: var(--text);
}

/* dashboard-first redesign pass 70 */
.nav nav a[href="commands.html"] {
  color: var(--muted);
}

.dashboard-app {
  padding-bottom: 90px;
}

.dashboard-topbar {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: 56px 0 54px;
}

.dashboard-topbar h1 {
  margin: 18px 0;
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.dashboard-topbar p:not(.eyebrow),
.dashboard-section-head p,
.dashboard-account-card p {
  color: var(--muted);
}

.dashboard-account-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(13, 19, 31, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(18px);
}

.dashboard-account-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.dashboard-small-error {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 153, 153, 0.22);
  border-radius: 14px;
  background: rgba(255, 80, 80, 0.08);
  color: #ffd3d3 !important;
}

.dashboard-layout-v2 {
  grid-template-columns: 300px minmax(0, 1fr);
}

.dashboard-sidebar-v2 {
  padding: 24px;
}

.dashboard-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.compact-button {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 13px;
  font-size: 0.92rem;
}

.ghost-button {
  background: transparent;
  box-shadow: none;
}

.dashboard-stats-v2 strong {
  font-size: 1.05rem;
}

.setup-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.setup-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.setup-check-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
}

.setup-check strong,
.setup-check small {
  display: block;
}

.setup-check small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 750;
}

.setup-check.is-good {
  border-color: rgba(87, 242, 135, 0.22);
}

.setup-check.is-good .setup-check-icon,
.module-editor-status.is-good {
  color: #dfffe9;
  background: rgba(87, 242, 135, 0.14);
}

.setup-check.is-missing {
  border-color: rgba(255, 206, 86, 0.18);
}

.setup-check.is-missing .setup-check-icon,
.module-editor-status.is-missing {
  color: #ffe9ad;
  background: rgba(255, 206, 86, 0.12);
}

.setup-empty-state {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.setup-empty-state strong,
.setup-empty-state span {
  display: block;
}

.setup-empty-state span {
  margin-top: 4px;
  color: var(--muted);
}

.module-grid-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-card-v2 {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.module-card-top h3 {
  margin: 0;
}

.module-card-top span,
.module-editor-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
}

.module-card-v2.is-configured .module-card-top span {
  color: #dfffe9;
  background: rgba(87, 242, 135, 0.13);
}

.module-card-v2.is-missing .module-card-top span {
  color: #ffe9ad;
  background: rgba(255, 206, 86, 0.11);
}

.module-card-v2 small {
  display: block;
  min-height: 42px;
  color: #dbe4ff;
  font-weight: 800;
}

.module-card-v2 button {
  width: fit-content;
  margin-top: auto;
}

.module-card-v2.is-selected {
  border-color: rgba(88, 101, 242, 0.54) !important;
  box-shadow:
    0 0 0 1px rgba(88, 101, 242, 0.16) inset,
    0 24px 80px rgba(0, 0, 0, 0.30);
}

.module-editor-card {
  display: block;
}

.module-editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.module-editor-head h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.dashboard-field input,
.dashboard-field select {
  width: 100%;
  min-height: 46px;
}

.dashboard-field input {
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 25, 0.82);
  color: var(--text);
  font: inherit;
  font-weight: 850;
}

.dashboard-field input:focus {
  outline: 3px solid rgba(88, 101, 242, 0.30);
  outline-offset: 2px;
  border-color: rgba(88, 101, 242, 0.50);
}

.dashboard-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.dashboard-form-actions .button {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.dashboard-command-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.dashboard-command-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(88, 101, 242, 0.40);
  border-radius: 13px;
  background: rgba(88, 101, 242, 0.13);
  color: #dbe0ff;
  font-weight: 900;
}

.commands-page-main {
  width: min(1120px, calc(100% - 32px));
}

.commands-page-card > p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
}

.command-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.command-reference-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.command-reference-grid article > span {
  color: #cdd3ff;
  font-size: 0.82rem;
  font-weight: 950;
}

.command-reference-grid h2 {
  margin: 8px 0 14px;
}

.command-reference-grid code {
  display: inline-flex;
  margin: 0 6px 8px 0;
}

.command-reference-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .dashboard-topbar,
  .dashboard-layout-v2,
  .setup-checklist,
  .module-grid-v2,
  .command-reference-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section-head,
  .module-editor-head {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .dashboard-topbar {
    padding-top: 34px;
  }

  .dashboard-topbar h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .dashboard-form-actions .button,
  .dashboard-auth-actions .button {
    width: 100%;
  }
}


/* compact dashboard control-panel pass 81 */
.dashboard-main {
  width: min(1280px, calc(100% - 32px));
}

.dashboard-app {
  padding-bottom: 54px;
}

.dashboard-topbar {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
  padding: 24px 0 18px;
}

.dashboard-topbar h1 {
  max-width: 640px;
  margin: 8px 0 8px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.dashboard-topbar p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.dashboard-account-card {
  padding: 16px;
  border-radius: 18px;
  align-self: end;
}

.dashboard-account-card h2 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.dashboard-account-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.dashboard-auth-actions {
  gap: 8px;
}

.dashboard-layout-v2 {
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 52px;
}

.dashboard-sidebar-v2 {
  padding: 16px;
  border-radius: 18px;
}

.dashboard-sidebar h2 {
  font-size: 1.16rem;
}

.dashboard-sidebar p,
.server-switcher-label,
.dashboard-field span {
  font-size: 0.76rem;
}

.dashboard-sidebar > span {
  margin-top: 8px;
  padding: 4px 8px;
  font-size: 0.74rem;
}

.server-switcher-label {
  margin-top: 14px;
  margin-bottom: 6px;
}

.server-picker-button {
  min-height: 38px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.server-picker-option {
  min-height: 32px;
  padding: 7px 9px;
  font-size: 0.86rem;
}

.dashboard-menu {
  gap: 5px;
  margin-top: 16px;
}

.dashboard-menu a {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.dashboard-content {
  gap: 14px;
}

.dashboard-panel {
  border-radius: 20px;
  padding: 18px;
}

.dashboard-panel h2,
.dashboard-section-head h2 {
  margin: 4px 0 6px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.dashboard-panel p,
.dashboard-section-head p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.eyebrow {
  font-size: 0.72rem !important;
}

.compact-button {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.dashboard-stats {
  gap: 8px;
  margin-top: 14px;
}

.dashboard-stats article {
  padding: 10px 12px;
  border-radius: 14px;
}

.dashboard-stats span {
  font-size: 0.78rem;
}

.dashboard-stats-v2 strong {
  margin-top: 3px;
  font-size: 0.95rem;
}

.setup-checklist {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.setup-check {
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
}

.setup-check-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 0.8rem;
}

.setup-check strong {
  font-size: 0.82rem;
  line-height: 1.2;
}

.setup-check small {
  margin-top: 1px;
  font-size: 0.74rem;
  line-height: 1.3;
}

.module-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.85fr);
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.module-grid-v2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.module-card-v2 {
  min-height: 122px;
  gap: 6px;
  padding: 13px;
  border-radius: 16px;
}

.module-card-top {
  gap: 8px;
}

.module-card-top h3 {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.module-card-top span,
.module-editor-status {
  min-height: 22px;
  padding: 3px 7px;
  font-size: 0.66rem;
}

.module-card-v2 p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.module-card-v2 small {
  min-height: 0;
  font-size: 0.74rem;
  line-height: 1.35;
}

.module-card-v2 button {
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 9px;
  font-size: 0.78rem;
}

.module-card-v2.is-selected {
  box-shadow:
    0 0 0 1px rgba(88, 101, 242, 0.18) inset,
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.module-editor-card {
  position: sticky;
  top: 16px;
  margin-top: 0;
  padding: 16px;
  border-radius: 18px;
}

.module-editor-head {
  gap: 10px;
}

.module-editor-head h3 {
  margin: 2px 0 5px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.module-editor-head p:not(.eyebrow) {
  font-size: 0.88rem;
  line-height: 1.45;
}

#dashboard-settings-form {
  gap: 10px;
  margin-top: 14px;
}

.dashboard-field {
  gap: 6px;
}

.dashboard-field input,
.dashboard-field select {
  min-height: 38px;
  border-radius: 11px;
  font-size: 0.88rem;
}

.dashboard-field input {
  padding: 0 11px;
}

.dashboard-form-actions {
  gap: 8px;
  margin-top: 2px;
}

.dashboard-form-actions .button {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.preview-note {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.dashboard-commands-panel,
#support.dashboard-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.dashboard-command-list {
  margin-top: 0;
}

.dashboard-command-list a,
.dashboard-command-list code {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .setup-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-workspace {
    grid-template-columns: 1fr;
  }

  .module-editor-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .dashboard-topbar,
  .dashboard-layout-v2,
  .dashboard-commands-panel,
  #support.dashboard-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    padding-top: 18px;
  }
}

@media (max-width: 680px) {
  .dashboard-main {
    width: min(100% - 20px, 1280px);
  }

  .dashboard-topbar h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .setup-checklist,
  .module-grid-v2 {
    grid-template-columns: 1fr;
  }

  .dashboard-panel,
  .dashboard-sidebar-v2,
  .dashboard-account-card,
  .module-editor-card {
    border-radius: 16px;
  }
}

/* inline editable module cards pass 90 */
.module-workspace-inline {
  display: block;
  margin-top: 14px;
}

.module-grid-inline {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px;
}

.module-inline-card {
  cursor: default !important;
  min-height: 0;
  padding: 14px;
  gap: 10px;
}

.module-inline-card:hover {
  transform: none !important;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.module-inline-card.is-configured:hover {
  border-color: rgba(87, 242, 135, 0.24);
}

.module-inline-card .module-card-top {
  align-items: flex-start;
}

.module-inline-card .module-card-top > div {
  min-width: 0;
}

.module-inline-card .module-card-top p {
  margin-top: 4px;
}

.module-inline-summary {
  min-height: 0 !important;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.12);
  overflow-wrap: anywhere;
}

.module-inline-form {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.module-inline-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.module-inline-card .dashboard-field {
  gap: 5px;
}

.module-inline-card .dashboard-field span {
  font-size: 0.72rem;
}

.module-inline-card .dashboard-field input,
.module-inline-card .dashboard-field select {
  min-height: 34px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.module-inline-card .dashboard-field select {
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, #dbe0ff 50%) right 15px center / 5px 5px no-repeat,
    linear-gradient(135deg, #dbe0ff 50%, transparent 50%) right 10px center / 5px 5px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 25, 0.82);
}

.module-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.module-inline-actions .button {
  min-height: 32px;
  padding: 6px 9px;
  border: 0;
  border-radius: 9px;
  font-size: 0.76rem;
  cursor: pointer;
}

.module-inline-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.module-inline-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
}

.module-editor-card,
.dashboard-detail-card#module-detail-card {
  display: none !important;
}

@media (max-width: 1120px) {
  .module-grid-inline {
    grid-template-columns: 1fr;
  }
}

/* custom inline module dropdowns pass 91 */
.module-picker {
  position: relative;
  width: 100%;
}

.module-picker-button {
  width: 100% !important;
  min-height: 36px !important;
  margin-top: 0 !important;
  padding: 7px 9px 7px 11px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(9, 14, 25, 0.88);
  box-shadow: 0 0 0 1px rgba(88, 101, 242, 0.05) inset;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.module-picker-button:hover,
.module-picker.is-open .module-picker-button {
  border-color: rgba(135, 146, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(88, 101, 242, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(10, 15, 28, 0.94);
}

.module-picker-button:focus-visible {
  outline: none;
  border-color: rgba(135, 146, 255, 0.72);
  box-shadow:
    0 0 0 3px rgba(88, 101, 242, 0.18),
    0 0 0 1px rgba(88, 101, 242, 0.14) inset;
}

.module-picker-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-picker.is-disabled .module-picker-button,
.module-picker-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.module-picker.is-open .server-picker-chevron {
  transform: rotate(180deg);
  background: rgba(87, 242, 135, 0.16);
}

.module-picker-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(23, 34, 53, 0.99), rgba(11, 16, 28, 0.99));
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(88, 101, 242, 0.10) inset;
  backdrop-filter: blur(18px);
}

.module-picker.is-open .module-picker-menu {
  display: grid;
  gap: 4px;
}

.module-picker-option {
  width: 100% !important;
  min-height: 34px !important;
  margin-top: 0 !important;
  padding: 8px 9px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.81rem !important;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-picker-option:hover,
.module-picker-option[aria-selected="true"] {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.24), rgba(87, 242, 135, 0.08));
}

.module-picker-option.is-empty {
  color: #aeb7d4;
}

.module-picker-menu::-webkit-scrollbar {
  width: 8px;
}

.module-picker-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.module-inline-card {
  overflow: visible;
}


/* keep custom module dropdowns above neighboring cards */
.module-grid-inline,
.dashboard-main,
.dashboard-content,
.dashboard-shell {
  overflow: visible;
}

.module-inline-card {
  position: relative;
  z-index: 1;
  overflow: visible !important;
}

.module-inline-card.is-picker-open {
  z-index: 900;
}

.module-picker {
  z-index: 1;
}

.module-picker.is-open {
  z-index: 920;
}

.module-picker.is-open .module-picker-menu {
  z-index: 940;
}


/* module alignment polish pass 94 */
.module-inline-card .module-card-top p {
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 760px) {
  .module-inline-card .module-card-top p {
    min-height: 0;
  }
}

/* bump card alignment polish pass 95 */
.module-inline-summary {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
}

.module-inline-card[data-module="bump"] .module-inline-fields {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.module-inline-card[data-module="bump"] .dashboard-field span {
  white-space: nowrap;
}

.module-inline-card[data-module="bump"] .module-picker-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .module-inline-card[data-module="bump"] .module-inline-fields {
    grid-template-columns: 1fr;
  }
}
