:root {
  --page: #101218;
  --page-glow: #1d2330;
  --panel: rgba(28, 33, 45, 0.92);
  --panel-strong: rgba(19, 23, 33, 0.96);
  --panel-soft: rgba(37, 44, 60, 0.82);
  --ink: #f2f5fb;
  --muted: #b2bdd2;
  --accent: #5865f2;
  --accent-soft: rgba(88, 101, 242, 0.16);
  --line: rgba(144, 156, 187, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(88, 101, 242, 0.2), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(69, 79, 191, 0.18), transparent 20%),
    linear-gradient(180deg, #0b0d13 0%, var(--page) 100%);
  font-family: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.site-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.hero,
.panel,
.pricing-card,
.legal-block,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero,
.pricing-card,
.legal-block {
  padding: 32px;
}

.hero-app {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(30, 36, 49, 0.96), rgba(17, 20, 29, 0.98)),
    var(--panel);
}

.hero h1,
.pricing-card h2,
.legal-shell h1 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero h1,
.legal-shell h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.hero h1 {
  text-wrap: balance;
}

.legal-shell h1 {
  text-wrap: unset;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.lede {
  margin: 8px 0 4px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-copy {
  display: grid;
  gap: 6px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

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

.hero-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.button,
.button-secondary,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, filter 140ms ease, border-color 140ms ease;
}

.button {
  background: linear-gradient(145deg, #6673ff, #5663ef);
  color: white;
  box-shadow: 0 14px 30px rgba(72, 85, 208, 0.24);
}

.button-secondary,
.back-link {
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
}

.button:hover,
.button-secondary:hover,
.back-link:hover,
.link-list a:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.panel {
  padding: 24px;
  background: var(--panel-soft);
}

.proof-panel {
  display: grid;
  gap: 20px;
}

.mid-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: stretch;
}

.mid-grid > .panel,
.mid-grid > .pricing-card {
  height: 100%;
}

.proof-panel h2 {
  margin-bottom: 10px;
}

.proof-copy p:last-child {
  margin-bottom: 0;
}

.panel-copy {
  margin: 10px 0 18px;
  color: var(--ink);
  line-height: 1.6;
}

.proof-image-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(26, 29, 37, 0.96), rgba(20, 23, 30, 0.98));
  padding: 14px;
}

.proof-image {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.pricing-card {
  background:
    linear-gradient(145deg, rgba(30, 36, 49, 0.98), rgba(17, 20, 29, 0.98)),
    var(--panel-strong);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.pricing-inline-price {
  color: #fff1bf;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-summary {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 34ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pricing-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pricing-note--callout {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.pricing-summary--lead {
  color: var(--ink);
  max-width: none;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.pricing-copy p:first-child {
  margin-top: 0;
}

.pricing-feature,
.metric-card,
.feed-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-feature {
  padding: 18px;
}

.pricing-feature strong,
.metric-card strong,
.feed-header strong {
  display: block;
}

.pricing-feature span,
.metric-label,
.feed-card p {
  color: var(--muted);
}

.status-preview-card .metric-label {
  font-weight: 700;
  color: var(--ink);
}

.pricing-table-wrap {
  min-width: 0;
  overflow-x: auto;
  max-width: 760px;
}

.pricing-table {
  width: min(100%, 760px);
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  min-width: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(30, 35, 47, 0.96), rgba(19, 22, 31, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-table colgroup col:first-child {
  width: 40%;
}

.pricing-table colgroup col:nth-child(2),
.pricing-table colgroup col:nth-child(3) {
  width: 30%;
}

.pricing-table th,
.pricing-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.pricing-table thead th {
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-table thead th:first-child,
.pricing-table tbody th {
  text-align: left;
}

.pricing-table tbody th {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  background: rgba(255, 255, 255, 0.025);
}

.pricing-table td {
  text-align: center;
  color: #dfe6ff;
  font-weight: 700;
  font-size: 1rem;
}

.pricing-table tbody td:nth-child(2) {
  color: #cfd8ee;
}

.pricing-table thead th:last-child,
.pricing-table td:last-child {
  background: rgba(229, 189, 88, 0.12);
}

.pricing-table thead th:last-child {
  color: #fff1bf;
}

.pricing-table tbody td:last-child {
  color: #fff0c1;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (min-width: 821px) {
  .pricing-card {
    display: block;
  }
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(30, 36, 49, 0.98), rgba(17, 20, 29, 0.98)),
    var(--panel-strong);
}

.support-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-right: 6px;
}

.support-inline-text {
  display: inline;
}

.support-inline-link {
  display: none;
}

.support-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1;
}

.support-heading strong {
  font-weight: 700;
}

.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.16);
  border: 1px solid rgba(88, 101, 242, 0.2);
}

.support-icon svg {
  width: 12px;
  height: 12px;
}

.support-icon--discord {
  color: #d7dcff;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  padding: 18px 6px 0;
  border-top: 1px solid rgba(144, 156, 187, 0.12);
}

.site-footer-brand {
  display: grid;
  gap: 4px;
  text-align: center;
}

.site-footer-brand strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}

.site-footer-brand span {
  color: var(--muted);
}

.site-footer-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
}

.site-footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--ink);
}

.legal-shell {
  max-width: 920px;
}

.legal-shell .lede {
  max-width: none;
}

.article-hero {
  padding: 24px 28px;
  border: 1px solid rgba(125, 141, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(30, 36, 49, 0.96), rgba(17, 20, 29, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
}

.article-hero + .legal-block {
  margin-top: 0;
}

.article-hero .lede:last-child {
  margin-top: 8px;
  color: rgba(178, 189, 210, 0.82);
  font-size: 0.95rem;
}

.article-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-block {
  margin-top: 4px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
}

.legal-block--accent {
  padding: 28px 28px 30px;
  background:
    linear-gradient(145deg, rgba(30, 36, 49, 0.98), rgba(17, 20, 29, 0.98)),
    var(--panel-strong);
  border: 1px solid rgba(125, 141, 255, 0.24);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-block h2,
.panel h2,
.pricing-card h2 {
  margin-top: 0;
}

.legal-block h2 {
  margin-bottom: 6px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.legal-block p {
  color: var(--muted);
  text-wrap: pretty;
}

.legal-block p + p,
.legal-block p + ul,
.legal-block ul + p {
  margin-top: 6px;
}

.legal-shell ul {
  margin: 6px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-shell li + li {
  margin-top: 4px;
}

.steps-list,
.bullet-grid {
  padding-left: 0;
  margin: 18px 0 0;
  list-style: none;
}

.steps-list {
  display: grid;
  gap: 0;
  counter-reset: article-steps;
  border-left: 1px solid rgba(125, 141, 255, 0.26);
  margin-left: 13px;
}

.steps-list li {
  position: relative;
  padding: 0 0 18px 34px;
  color: var(--muted);
  text-wrap: pretty;
}

.steps-list li::before {
  counter-increment: article-steps;
  content: counter(article-steps);
  position: absolute;
  left: -14px;
  top: -1px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #6673ff, #5663ef);
  box-shadow: 0 10px 20px rgba(72, 85, 208, 0.24);
  color: #d9ddff;
  font-weight: 700;
}

.bullet-grid {
  display: grid;
  gap: 10px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bullet-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  text-wrap: pretty;
}

.bullet-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.back-link {
  margin-bottom: 18px;
}

.app-preview {
  min-width: 0;
}

.app-preview-mobile-label {
  display: none;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-shell {
  position: relative;
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  min-height: 432px;
  overflow: hidden;
  border: 1px solid rgba(125, 141, 255, 0.18);
  border-radius: 24px;
  background: #181c25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.app-shell-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 14, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(242, 245, 251, 0.88);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  background: #10131b;
  border-right: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-server-name {
  display: grid;
  gap: 8px;
}

.preview-nav {
  display: grid;
  gap: 8px;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #d9ddff;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pill--count {
  padding: 7px 12px;
  white-space: nowrap;
}

.status-pill--pro {
  width: fit-content;
  background: linear-gradient(145deg, rgba(214, 168, 76, 0.28), rgba(156, 112, 32, 0.2));
  color: #ffe7aa;
}

.status-copy--healthy {
  display: block;
  color: #7ee0a6;
  font-weight: 500;
}

.tag--soft {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.app-content {
  display: grid;
  grid-template-rows: auto 1fr;
}

.preview-mobile-nav {
  display: none;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.app-topbar--status {
  align-items: start;
}

.status-preview-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(125, 217, 166, 0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(26, 38, 34, 0.9), rgba(17, 25, 23, 0.96));
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.nav-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9ddff;
}

.nav-item-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.nav-item--active {
  background: rgba(88, 101, 242, 0.18);
  color: var(--ink);
}

.app-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card,
.feed-card {
  padding: 16px;
}

.feed-card--muted {
  background: rgba(255, 255, 255, 0.025);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.feed-card code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px;
  margin-top: 14px;
  align-items: start;
  justify-content: start;
}

.preview-delivery-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.preview-delivery-item + .preview-delivery-item {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.preview-delivery-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.preview-delivery-head strong {
  display: block;
}

ul {
  margin-bottom: 0;
  line-height: 1.65;
}

p {
  line-height: 1.65;
}

a {
  color: #c7d0ff;
}

@media (max-width: 1080px) {
  .hero-app,
  .proof-panel,
  .cta-panel,
  .mid-grid {
    grid-template-columns: 1fr;
  }

  .app-preview {
    order: 2;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100vw - 24px, 1180px);
    padding: 20px 0 56px;
  }

  .hero,
  .pricing-card,
  .legal-block,
  .article-hero {
    padding: 24px;
  }

  .panel-grid,
  .hero-app,
  .app-columns {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 20px;
  }

  .pricing-header {
    display: block;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-line {
    margin-bottom: 8px;
  }

  .app-shell {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
    min-height: 0;
  }

  .preview-sidebar {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 14px 12px;
  }

  .preview-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding: 11px 14px;
  }

  .link-list .button,
  .link-list .button-secondary {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding: 11px 14px;
  }

  .support-heading {
    display: none;
  }

  .support-cta {
    display: none;
  }

  .support-inline-text {
    display: none;
  }

  .support-inline-link {
    display: inline;
  }

  .support-server-button {
    display: none;
  }

  .app-shell-badge {
    display: none;
  }

  .app-preview-mobile-label {
    display: block;
  }
}

@media (max-width: 720px) {
  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 24px 20px;
  }

  .legal-shell h1 {
    font-size: clamp(1.78rem, 8vw, 2.4rem);
    line-height: 1.16;
    text-wrap: unset;
  }

  .legal-shell .lede {
    font-size: 1rem;
    line-height: 1.7;
    text-wrap: unset;
  }

  .legal-block {
    padding: 22px 0;
  }

  .legal-block--accent {
    padding: 24px 20px 26px;
  }

  .legal-block h2 {
    font-size: 1.28rem;
    line-height: 1.2;
    text-wrap: unset;
  }

  .legal-block p,
  .steps-list li,
  .bullet-grid li {
    text-wrap: unset;
  }

  .steps-list {
    margin-left: 11px;
  }

  .steps-list li {
    padding: 0 0 16px 30px;
  }

  .steps-list li::before {
    left: -12px;
    width: 24px;
    height: 24px;
    font-size: 0.88rem;
  }

  .article-highlights {
    gap: 8px;
  }

  .article-highlights .status-pill {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .article-highlights {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100vw - 18px, 1180px);
  }

  .hero,
  .pricing-card,
  .panel,
  .cta-panel,
  .legal-block {
    border-radius: 18px;
    padding: 20px;
  }

  .hero-copy {
    gap: 12px;
  }

  .hero-points {
    display: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .app-topbar,
  .app-panel,
  .preview-mobile-nav {
    padding: 14px;
  }

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

  .metric-card,
  .feed-card {
    padding: 14px;
  }

  .proof-panel {
    gap: 16px;
  }

  .proof-image-shell {
    padding: 14px;
  }

  .pricing-table {
    min-width: 0;
    font-size: 0.9rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 10px;
  }

  .pricing-table tbody th {
    font-size: 0.88rem;
  }

  .pricing-table td {
    font-size: 0.92rem;
  }

  .pricing-header {
    display: block;
  }

  .pricing-inline-price {
    display: inline-block;
    margin-top: 8px;
  }

  .preview-mobile-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
  }

  .preview-mobile-current {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .preview-mobile-current strong {
    display: block;
    font-size: 0.95rem;
  }

  .feed-header {
    align-items: center;
    flex-direction: row;
  }

  .preview-mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .preview-mobile-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #d9ddff;
  }

  .status-pill,
  .tag {
    white-space: normal;
  }
}
