@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg-0: #07101b;
  --bg-1: #0d1d2f;
  --bg-2: #152a3f;
  --surface-0: rgba(10, 21, 36, 0.82);
  --surface-1: rgba(18, 35, 55, 0.88);
  --surface-2: rgba(22, 44, 68, 0.92);
  --line-soft: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(120, 209, 255, 0.35);
  --text-main: #edf5ff;
  --text-muted: #a5b9cf;
  --accent-cyan: #2cc4ff;
  --accent-teal: #2fe5be;
  --accent-gold: #ffc767;
  --danger: #ff7a9b;
  --ok: #63e2a2;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 48px rgba(3, 9, 16, 0.45);
  --shadow-glow: 0 18px 50px rgba(44, 196, 255, 0.24);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(1200px 520px at 8% -10%, rgba(44, 196, 255, 0.22), transparent 50%),
    radial-gradient(800px 360px at 100% 12%, rgba(47, 229, 190, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 55%, var(--bg-2) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.22;
  z-index: -1;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(44, 196, 255, 0.14);
  color: #93e0ff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7, 15, 26, 0.74);
  border-bottom: 1px solid var(--line-soft);
}

.beta-banner {
  border-bottom: 1px solid rgba(255, 199, 103, 0.3);
  background: linear-gradient(120deg, rgba(255, 199, 103, 0.14), rgba(44, 196, 255, 0.1));
  padding: 18px 0;
}

.beta-banner-inner {
  display: grid;
  gap: 8px;
}

.beta-banner-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #ffd797;
  letter-spacing: -0.01em;
}

.beta-banner-copy {
  color: #d9e7f5;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 980px;
}

.beta-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin-top: 2px;
}

.beta-banner-link {
  font-size: 0.85rem;
  font-weight: 700;
}

.site-nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--text-main);
  font-size: 1.08rem;
}

.brand-mark {
  width: auto;
  height: 56px;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #c8daec;
  font-size: 0.92rem;
  font-weight: 700;
}

.btn,
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease,
    background 180ms ease;
  cursor: pointer;
}

.btn {
  padding: 12px 20px;
}

.btn-inline {
  padding: 10px 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #27bcff, #0ea4e8);
  color: #04101c;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-soft);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  text-decoration: none;
}

.btn-warning {
  background: rgba(255, 199, 103, 0.14);
  border-color: rgba(255, 199, 103, 0.38);
  color: #ffd28c;
}

.btn-danger {
  background: rgba(255, 122, 155, 0.12);
  border-color: rgba(255, 122, 155, 0.38);
  color: #ffc8d7;
}

.hero {
  padding: 92px 0 76px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.hero-brand-logo {
  display: block;
  width: min(460px, 88%);
  height: auto;
  margin: 0 0 24px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(4, 11, 22, 0.4);
}

.hero-title .accent {
  color: #83eaff;
}

.hero-copy {
  color: var(--text-muted);
  max-width: 630px;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 20px;
  color: #8fb5d5;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-panel {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(11, 24, 40, 0.92), rgba(18, 42, 64, 0.82));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 229, 190, 0.24), transparent 36%),
    radial-gradient(circle at 7% 90%, rgba(44, 196, 255, 0.24), transparent 45%);
}

.hero-panel-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 640px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
}

.stats-grid,
.card-grid,
.device-grid,
.legal-grid,
.pricing-grid,
.feature-grid,
.roadmap-grid,
.control-grid,
.screen-category-grid,
.shots-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.stat-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(9, 21, 35, 0.75);
  padding: 16px;
}

.stat-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screen-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shots-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.roadmap-card,
.device-card,
.legal-card,
.pricing-card,
.control-card,
.shot-group,
.shot-card,
.faq-item,
.doc-panel,
.panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface-0);
  box-shadow: var(--shadow-soft);
}

.card,
.feature-card,
.roadmap-card,
.device-card,
.legal-card,
.pricing-card,
.control-card,
.shot-group,
.shot-card,
.faq-item,
.doc-panel,
.panel {
  padding: 20px;
}

.card h3,
.feature-card h3,
.roadmap-card h3,
.device-card h3,
.legal-card h3,
.pricing-card h3,
.control-card h3,
.shot-group h3,
.doc-panel h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.card p,
.feature-card p,
.roadmap-card p,
.device-card p,
.legal-card p,
.pricing-card p,
.control-card p,
.shot-group p,
.faq-item p,
.doc-panel p {
  color: var(--text-muted);
  line-height: 1.65;
}

.roadmap-card {
  position: relative;
  overflow: hidden;
}

.roadmap-card.active {
  border-color: var(--line-strong);
  background: var(--surface-1);
}

.timeline-marker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(47, 229, 190, 0.36);
  background: rgba(47, 229, 190, 0.1);
  color: #aaf5df;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

.list li {
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.device-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.device-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  border: 1px solid rgba(114, 202, 246, 0.35);
  background: rgba(44, 196, 255, 0.08);
  color: #9ddfff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
}

.legal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: var(--line-strong);
  background: var(--surface-1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(44, 196, 255, 0.16);
  border: 1px solid rgba(44, 196, 255, 0.45);
  color: #9ae5ff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.price small {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
}

.shot-preview-grid {
  margin: 14px 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shot-thumb {
  margin: 0;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 9;
}

.shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shot-card {
  margin: 0;
  display: grid;
  gap: 8px;
  padding: 10px;
}

.shot-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  display: block;
}

.shot-card figcaption {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.4;
  word-break: break-all;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cta-strip {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(44, 196, 255, 0.16), rgba(47, 229, 190, 0.1));
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-strip p {
  color: #d6efff;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px 0;
  margin-top: 58px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdd2e7;
  font-size: 0.9rem;
}

.fine {
  color: #8ea7bf;
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-counter {
  margin-top: 18px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px 10px;
  align-items: baseline;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.site-counter-label {
  color: #bdd2e7;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-counter-value {
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.site-counter-status {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.doc-shell {
  padding: 48px 0 60px;
}

.doc-nav {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-header {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  padding: 28px;
  margin-bottom: 22px;
}

.doc-header h1 {
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin-bottom: 8px;
}

.doc-header p {
  color: var(--text-muted);
  line-height: 1.65;
}

.doc-tag {
  margin-top: 12px;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 199, 103, 0.32);
  background: rgba(255, 199, 103, 0.12);
  color: #ffdb9e;
  font-size: 0.78rem;
  padding: 4px 10px;
  font-weight: 700;
}

.doc-content {
  display: grid;
  gap: 14px;
}

.doc-panel h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.doc-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.doc-panel li {
  margin-bottom: 8px;
}

.doc-note {
  border: 1px solid rgba(255, 199, 103, 0.34);
  background: rgba(255, 199, 103, 0.12);
  color: #ffd797;
  border-radius: var(--radius-sm);
  padding: 14px;
  line-height: 1.65;
}

.account-shell {
  padding: 52px 0 70px;
}

.account-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: start;
}

.field-wrap {
  display: grid;
  gap: 10px;
}

.field-wrap label {
  font-size: 0.82rem;
  color: #b3c9df;
  font-weight: 700;
}

.field-wrap input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(5, 12, 20, 0.78);
  color: var(--text-main);
  font-size: 0.96rem;
  padding: 11px 12px;
}

#turnstile-widget {
  min-height: 70px;
}

#username-status,
#turnstile-status {
  min-height: 18px;
  margin: 0;
  color: #b3c9df;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
}

.status-pill.ok {
  border-color: rgba(99, 226, 162, 0.45);
  color: #a4f2c5;
  background: rgba(99, 226, 162, 0.14);
}

.status-pill.warn {
  border-color: rgba(255, 199, 103, 0.44);
  color: #ffdca5;
  background: rgba(255, 199, 103, 0.14);
}

.status-pill.err {
  border-color: rgba(255, 122, 155, 0.44);
  color: #ffc8d7;
  background: rgba(255, 122, 155, 0.14);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.metric .k {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.metric .v {
  font-size: 1.05rem;
  font-family: "Space Grotesk", sans-serif;
}

.verification-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 199, 103, 0.34);
  background: rgba(255, 199, 103, 0.10);
}

.verification-panel h3 {
  margin-bottom: 6px;
}

.verification-panel .form-row {
  margin-top: 10px;
}

.device-list {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.device-item {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.device-main {
  display: grid;
  gap: 3px;
}

.device-main strong {
  font-size: 0.95rem;
}

.device-main span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.message-log {
  margin-top: 12px;
  border-radius: 10px;
  border: 1px dashed var(--line-soft);
  background: rgba(0, 0, 0, 0.18);
  padding: 10px;
  min-height: 64px;
  max-height: 180px;
  overflow: auto;
  color: #c6dbef;
  font-size: 0.82rem;
  line-height: 1.5;
}

.small {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-6 {
  margin-left: 6px;
}

.hidden {
  display: none !important;
}

.center {
  text-align: center;
}

.spacer {
  height: 8px;
}

.reveal {
  animation: reveal 500ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.btn:focus-visible,
.btn-inline:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 2px;
  border-radius: 6px;
}

.btn:focus-visible,
.btn-inline:focus-visible {
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
  }

  .btn,
  .btn-inline {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 1050px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .split,
  .card-grid,
  .roadmap-grid,
  .pricing-grid,
  .device-grid,
  .screen-category-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .site-nav-inner {
    height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-mark {
    height: 48px;
  }

  .hero-brand-logo {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero {
    padding-top: 56px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

/* ---------------------------------------------------------------------------
   Account Center primary status
   The single authoritative result of the user's last action. The Activity Log
   below it is diagnostics; before this existed the log was the only status UI,
   which is how "signup failed" and "you have an account" could both be true.
   --------------------------------------------------------------------------- */

.primary-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: var(--surface-1);
}

.primary-status[data-tone="ok"] { border-color: rgba(99, 226, 162, 0.4); }
.primary-status[data-tone="warn"] { border-color: rgba(255, 199, 103, 0.42); }
.primary-status[data-tone="error"] { border-color: rgba(255, 122, 155, 0.42); }

.primary-status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
}

.primary-status-pill.ok {
  border-color: rgba(99, 226, 162, 0.45);
  color: #a4f2c5;
  background: rgba(99, 226, 162, 0.14);
}

.primary-status-pill.warn {
  border-color: rgba(255, 199, 103, 0.44);
  color: #ffdca5;
  background: rgba(255, 199, 103, 0.14);
}

.primary-status-pill.error {
  border-color: rgba(255, 122, 155, 0.44);
  color: #ffc8d7;
  background: rgba(255, 122, 155, 0.14);
}

.primary-status-message {
  flex: 1 1 260px;
  margin: 0;
  color: var(--text-main);
  font-size: 0.94rem;
  line-height: 1.45;
}
