:root {
  --bg-page-1: #031b2b;
  --bg-page-2: #02131f;
  --card-bg-top: rgba(4, 34, 52, 0.92);
  --card-bg-bottom: rgba(2, 22, 35, 0.96);
  --surface-texture:
    radial-gradient(ellipse at 25% 18%, rgba(255, 255, 255, 0.025), transparent 34%),
    radial-gradient(ellipse at 76% 12%, rgba(17, 191, 255, 0.045), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.012), transparent 42%);

  --accent: #11bfff;
  --accent-2: #0098d6;

  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);

  --stroke: rgba(17, 191, 255, 0.18);

  --shadow-xl: 0 28px 70px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.24);

  --radius-xl: 36px;

  --container: 1280px;
}

/* RESET */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  min-height: 100dvh;
  background:
    var(--surface-texture),
    radial-gradient(circle at top center, rgba(17, 191, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(17, 191, 255, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg-page-1) 0%, var(--bg-page-2) 100%);
  background-size:
    auto,
    auto,
    auto;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

/* LAYOUT */

.page {
  min-height: 100dvh;
  height: 100dvh;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-card {
  --card-scale: 1;

  position: relative;
  overflow: hidden;
  width: min(calc(100% / var(--card-scale)), calc(var(--container) / var(--card-scale)));
  min-height: calc((100dvh - 36px) / var(--card-scale));
  padding: clamp(24px, 2vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  background:
    var(--surface-texture),
    linear-gradient(180deg, var(--card-bg-top), var(--card-bg-bottom));
  background-size:
    auto,
    auto,
    auto;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transform: scale(var(--card-scale));
  transform-origin: center;
}

/* BACKGROUND DECOR */

.bg-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.9;
}

.bg-orb-one {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -90px;
  background: radial-gradient(circle, rgba(17, 191, 255, 0.14), transparent 68%);
}

.bg-orb-two {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(17, 191, 255, 0.1), transparent 70%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 191, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 191, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 65%);
  pointer-events: none;
}

/* TOPO */

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 468px;
}

.brand-fallback {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 300px;
  min-height: 68px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 191, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 rgba(17, 191, 255, 0);
  transform: translateY(34px);
  animation: badgeGlow 1.8s ease-in-out infinite;
}

.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 7px rgba(17, 191, 255, 0.13),
    0 0 18px rgba(17, 191, 255, 0.52);
  animation: statusPulse 1.45s ease-in-out infinite;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  border: 1px solid rgba(17, 191, 255, 0.45);
  opacity: 0;
  transform: scale(0.65);
  animation: statusRing 1.45s ease-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 7px rgba(17, 191, 255, 0.13),
      0 0 18px rgba(17, 191, 255, 0.52);
  }

  50% {
    transform: scale(1.28);
    box-shadow:
      0 0 0 12px rgba(17, 191, 255, 0.2),
      0 0 28px rgba(17, 191, 255, 0.68);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    border-color: rgba(17, 191, 255, 0.22);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 0 rgba(17, 191, 255, 0);
  }

  50% {
    border-color: rgba(17, 191, 255, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 28px rgba(17, 191, 255, 0.1);
  }
}

@keyframes statusRing {
  0% {
    opacity: 0.75;
    transform: scale(0.65);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

/* HERO */

.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  transform: translateY(-24px);
}

.hero-content {
  min-width: 0;
  width: 100%;
  max-width: 920px;
  padding-top: clamp(24px, 3vw, 42px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.15vw, 4.35rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.hero-content h1 span {
  color: var(--accent);
}

.lead {
  margin: 30px 0 0;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.9;
}

.lead strong {
  color: var(--text);
}

/* LANÇAMENTO EM BREVE */

.micro-note {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.micro-note-line {
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex: 0 0 auto;
}

.micro-note p {
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(17, 191, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 191, 255, 0.045);
  color: var(--text-soft);
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ARTE DIREITA */

.hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-lines {
  position: absolute;
  top: 4px;
  right: -10px;
  width: 112%;
  max-width: 520px;
  opacity: 0.72;
}

.hero-art-lines svg {
  width: 100%;
  height: auto;
  display: block;
}

.art-island,
.art-wave {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-island {
  stroke: rgba(17, 191, 255, 0.32);
  stroke-width: 5;
}

.art-wave {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 3;
}

.art-dot {
  fill: rgba(17, 191, 255, 0.98);
  filter: drop-shadow(0 0 10px rgba(17, 191, 255, 0.5));
}

.floating-label {
  position: absolute;
  top: 62px;
  left: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 191, 255, 0.18);
  background: rgba(3, 29, 45, 0.72);
  backdrop-filter: blur(8px);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.floating-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.preview-card {
  position: relative;
  z-index: 2;
  width: min(100%, 400px);
  margin-top: 36px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(17, 191, 255, 0.2);
  background: linear-gradient(180deg, rgba(8, 45, 68, 0.95), rgba(3, 26, 40, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.preview-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

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

.preview-screen {
  min-height: 320px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid rgba(17, 191, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 191, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(17, 191, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.preview-logo {
  width: 142px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(17, 191, 255, 0.92));
}

.preview-title {
  width: 76%;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 191, 255, 0.98), rgba(17, 191, 255, 0.26));
}

.preview-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-line.short {
  width: 78%;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.preview-cards span {
  height: 78px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(17, 191, 255, 0.09);
}

.preview-button {
  width: 150px;
  height: 42px;
  margin-top: auto;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(17, 191, 255, 0.18);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 3;
  width: min(100%, 260px);
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 191, 255, 0.18);
  background: rgba(5, 33, 49, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.floating-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.floating-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* FOOTER */

.footer-bar {
  position: relative;
  z-index: 2;
  margin-top: clamp(26px, 4vw, 42px);
  padding-top: 18px;
  border-top: 1px solid rgba(17, 191, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bar p {
  margin: 0;
  width: 100%;
  color: var(--text-soft);
  font-size: 0.93rem;
  text-align: center;
  line-height: 1.5;
}

.footer-bar strong {
  color: var(--text);
}

/* DESKTOP MAIS BAIXO */

@media (max-height: 780px) and (min-width: 1025px) {
  .coming-card {
    --card-scale: 0.92;
    min-height: calc((100dvh - 36px) / var(--card-scale));
    padding: 22px 28px;
  }

  .topbar {
    padding-bottom: 24px;
  }

  .hero {
    transform: translateY(-12px);
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 3.85vw, 3.7rem);
  }

  .lead {
    margin-top: 24px;
    line-height: 1.75;
  }

  .hero-art {
    min-height: 440px;
  }

  .preview-card {
    width: min(100%, 360px);
  }

  .preview-screen {
    min-height: 280px;
  }

  .preview-title {
    height: 62px;
  }

  .preview-cards span {
    height: 62px;
  }

  .floating-card {
    width: 230px;
  }

  .footer-bar {
    margin-top: 24px;
  }
}

/* TABLET */

@media (max-width: 1024px) {
  .page {
    padding: 14px;
    align-items: center;
  }

  .coming-card {
    --card-scale: 0.94;
    min-height: calc((100dvh - 28px) / var(--card-scale));
    padding: 24px;
    justify-content: flex-start;
  }

  .hero {
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 5.1vw, 3.35rem);
    max-width: none;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-art {
    min-height: 360px;
    justify-content: flex-end;
    padding-top: 54px;
  }

  .hero-art-lines {
    width: 280px;
    right: -26px;
    top: 8px;
    opacity: 0.5;
  }

  .floating-label {
    top: 34px;
    left: 8px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .preview-card {
    width: 200px;
    padding: 10px;
    margin-top: 18px;
    border-radius: 20px;
  }

  .preview-top {
    gap: 6px;
    margin-bottom: 10px;
  }

  .preview-top span {
    width: 7px;
    height: 7px;
  }

  .preview-screen {
    min-height: 150px;
    padding: 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .preview-logo {
    width: 68px;
    height: 7px;
  }

  .preview-title {
    height: 34px;
    border-radius: 10px;
  }

  .preview-line {
    height: 6px;
  }

  .preview-cards {
    gap: 6px;
  }

  .preview-cards span {
    height: 28px;
    border-radius: 8px;
  }

  .preview-button {
    width: 64px;
    height: 20px;
    border-radius: 8px;
  }

  .floating-card {
    width: 190px;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .floating-card strong {
    font-size: 0.84rem;
  }

  .floating-card p {
    font-size: 0.78rem;
  }

  .footer-bar {
    margin-top: 30px;
    padding-top: 16px;
  }
}

/* TABLET ESTREITO */

@media (max-width: 820px) and (min-width: 701px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    height: auto;
    min-height: 100dvh;
    padding: 18px;
    align-items: flex-start;
    overflow: visible;
  }

  .coming-card {
    --card-scale: 1;
    width: min(100%, var(--container));
    min-height: calc(100dvh - 36px);
    padding: 28px;
    transform: none;
    overflow: hidden;
  }

  .topbar {
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 34px;
    text-align: center;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: min(100%, 440px);
  }

  .status-pill {
    width: auto;
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.98rem;
    gap: 10px;
    transform: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    transform: none;
  }

  .hero-content {
    width: 100%;
    max-width: 620px;
    padding-top: clamp(34px, 8vh, 78px);
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 5.1vw, 2.6rem);
  }

  .lead {
    max-width: 56ch;
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page {
    min-height: 100dvh;
    padding: 8px 10px;
    align-items: stretch;
    justify-content: stretch;
  }

  .coming-card {
    width: 100%;
    min-height: calc(100dvh - 16px);
    padding: 24px 16px 24px;
    border: none;
    border-radius: 0;
    background:
      var(--surface-texture),
      radial-gradient(circle at 50% 18%, rgba(17, 191, 255, 0.08), transparent 34%),
      radial-gradient(circle at 50% 78%, rgba(17, 191, 255, 0.05), transparent 28%);
    background-size:
      auto,
      auto,
      auto,
      auto,
      auto;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .bg-grid,
  .bg-orb {
    display: none;
  }

  .topbar {
    padding-bottom: 0;
    gap: 26px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: auto;
    max-width: 100%;
    max-height: 75px;
    margin-inline: auto;
  }

  .status-pill {
    width: auto;
    min-height: 50px;
    padding: 0 22px;
    font-size: 0.98rem;
    gap: 11px;
    justify-content: center;
    margin-top: 14px;
    transform: none;
  }

  .hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    transform: none;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 64px);
    padding: clamp(48px, 8vh, 82px) 10px 0;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 8.7vw, 2.52rem);
    line-height: 0.92;
    margin: 0;
    white-space: normal;
  }

  .lead {
    margin-top: 34px;
    max-width: 34rem;
    font-size: 1.08rem;
    line-height: 1.72;
    overflow-wrap: normal;
  }

  .micro-note {
    margin-top: 48px;
    gap: 16px;
  }

  .micro-note p {
    font-size: 1.18rem;
    font-weight: 800;
  }

  .hero-art {
    min-height: auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
    padding-top: 0;
    justify-content: center;
    align-items: center;
  }

  .hero-art-lines {
    width: 82%;
    max-width: 280px;
    top: 2px;
    left: 50%;
    right: auto;
    transform: translateX(-38%);
    opacity: 0.42;
  }

  .floating-label {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
    z-index: 4;
  }

  .preview-card {
    width: 100%;
    max-width: 245px;
    margin: 34px auto 0;
    padding: 8px;
  }

  .preview-screen {
    min-height: 155px;
    padding: 8px;
  }

  .preview-logo {
    width: 76px;
    height: 7px;
  }

  .preview-title {
    height: 35px;
  }

  .preview-line {
    height: 6px;
  }

  .preview-cards span {
    height: 28px;
  }

  .preview-button {
    width: 78px;
    height: 22px;
  }

  .floating-card {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 2px;
    transform: translateX(12%);
    width: 132px;
    max-width: 132px;
    padding: 8px 9px;
    z-index: 5;
  }

  .floating-card strong {
    font-size: 0.68rem;
  }

  .floating-card p {
    font-size: 0.63rem;
    line-height: 1.34;
  }

  .footer-bar {
    margin-top: 12px;
    padding-top: 10px;
  }

  .footer-bar p {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: min(100%, 320px);
  }

  .hero-content {
    max-width: 340px;
    margin-inline: auto;
  }

  .hero-content h1 {
    font-size: clamp(1.88rem, 7.85vw, 2.16rem);
  }

  .lead {
    margin-top: 34px;
    font-size: 1.05rem;
    line-height: 1.72;
  }

  .micro-note {
    margin-top: 48px;
  }

  .micro-note p {
    font-size: 1.16rem;
  }
}

/* MOBILE PEQUENO */

@media (max-width: 420px) {
  .page {
    padding: 8px 10px;
  }

  .coming-card {
    min-height: calc(100dvh - 16px);
    padding: 22px 14px 24px;
  }

  .topbar {
    gap: 24px;
  }

  .brand img {
    max-width: 100%;
    width: min(100%, 320px);
    max-height: 74px;
  }

  .status-pill {
    width: auto;
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.94rem;
    margin-top: 8px;
  }

  .hero {
    gap: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 284px;
    margin-inline: auto;
    padding: clamp(46px, 7vh, 76px) 4px 0;
  }

  .hero-content h1 {
    font-size: clamp(1.62rem, 6.85vw, 1.86rem);
    line-height: 0.92;
  }

  .lead {
    margin-top: 32px;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .micro-note {
    margin-top: 46px;
  }

  .micro-note p {
    font-size: 1.14rem;
    font-weight: 800;
  }

  .hero-art {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .hero-art-lines {
    width: 82%;
    max-width: 250px;
    left: 50%;
    top: 2px;
    transform: translateX(-38%);
  }

  .floating-label {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .preview-card {
    max-width: 220px;
    margin: 31px auto 0;
    padding: 7px;
  }

  .preview-screen {
    min-height: 140px;
    padding: 7px;
  }

  .preview-logo {
    width: 68px;
    height: 7px;
  }

  .preview-title {
    height: 32px;
  }

  .preview-line {
    height: 5px;
  }

  .preview-cards span {
    height: 25px;
  }

  .preview-button {
    width: 70px;
    height: 20px;
  }

  .floating-card {
    left: 50%;
    right: auto;
    bottom: 1px;
    transform: translateX(10%);
    width: 122px;
    max-width: 122px;
    padding: 8px 9px;
  }

  .floating-card strong {
    font-size: 0.63rem;
  }

  .floating-card p {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .footer-bar {
    margin-top: 10px;
    padding-top: 8px;
  }

  .footer-bar p {
    font-size: 0.72rem;
  }
}
.hero-illustration {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.28));
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .status-pill,
  .status-dot,
  .status-dot::after {
    animation: none !important;
  }
}
