:root {
  color-scheme: light dark;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-strong: #eef3f8;
  --text: #17202a;
  --muted: #5d6b78;
  --line: #dce3ea;
  --brand: #216b78;
  --brand-strong: #164e5a;
  --accent: #c64f35;
  --accent-soft: #ffe9e3;
  --shadow: 0 22px 60px rgba(20, 35, 45, 0.13);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.site-header,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark,
.card-icon,
.app-icon.placeholder {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-dropdown-trigger {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  line-height: 1.55;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-trigger::after {
  content: "v";
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.75;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  background: var(--surface-strong);
  text-decoration: none;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  display: grid;
}

.nav-dropdown-panel a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a[aria-current="page"] {
  background: var(--surface-strong);
  text-decoration: none;
}

.site-nav a {
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-strong);
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.hero,
.page-heading,
.section,
.legal-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 48px;
  padding: 76px 0 48px;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100vh - 84px));
  overflow: hidden;
  background: #142328;
  color: #fff;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 27, 32, 0.96) 0%, rgba(13, 27, 32, 0.78) 43%, rgba(13, 27, 32, 0.36) 100%),
    linear-gradient(180deg, rgba(13, 27, 32, 0.18) 0%, rgba(13, 27, 32, 0.88) 100%);
  content: "";
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.home-hero-shot {
  position: absolute;
  width: min(980px, 72vw);
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  object-fit: cover;
}

.home-hero-shot-primary {
  right: max(-110px, -7vw);
  bottom: 44px;
}

.home-hero-shot-secondary {
  right: min(250px, 24vw);
  bottom: -62px;
  width: min(650px, 48vw);
  opacity: 0.9;
}

.home-hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 48px;
}

.home-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: 5.75rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-hero-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 12px;
  margin-top: 48px;
}

.home-hero-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
}

.home-hero-link:hover {
  background: rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.home-hero-link img,
.home-app-icon {
  border-radius: 15px;
  object-fit: cover;
}

.home-hero-link span {
  display: grid;
  gap: 2px;
}

.home-hero-link small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero h1,
.page-heading h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 700;
  line-height: 1.2;
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  background: var(--surface);
  color: var(--text);
}

.button.disabled {
  color: var(--muted);
  background: var(--surface-strong);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device-panel,
.feature-card,
.app-card,
.contact-panel,
.note-box,
.faq details,
.callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.device-panel {
  width: min(100%, 430px);
  padding: 18px;
}

.panel-topline {
  display: flex;
  gap: 7px;
  padding-bottom: 26px;
}

.panel-topline span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--line);
}

.panel-content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5fbfc, #fff4ef);
}

.preview-icon,
.app-icon {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  object-fit: cover;
}

.panel-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.panel-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
}

.panel-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.panel-list span {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  font-weight: 700;
}

.section {
  padding: 38px 0;
}

.home-showcase {
  padding-top: 52px;
}

.home-app-grid,
.home-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-routes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-app-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.home-app-media {
  background: var(--surface-strong);
}

.home-app-media img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top center;
}

.home-app-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.home-app-card.voice-command-atlas-card {
  border-color: #ddcde8;
  background: #f7f1fb;
}

.home-app-card.voice-command-atlas-card .home-app-media {
  background: #eee3f6;
}

.home-app-copy h3 {
  margin: 4px 0 10px;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-app-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.home-app-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(20, 35, 45, 0.16);
}

.home-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.home-callout {
  margin-top: 10px;
}

.intro-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.feature-card {
  display: block;
  padding: 24px;
  color: var(--text);
}

.feature-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.feature-card h2,
.app-card h2,
.contact-panel h2,
.note-box h2,
.faq h2,
.callout h2,
.legal-page h2 {
  margin: 14px 0 8px;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-card p,
.app-card p,
.contact-panel p,
.note-box p,
.legal-page p {
  color: var(--muted);
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-bottom: 42px;
}

.callout h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.page-heading {
  padding: 68px 0 22px;
}

.compact-heading h1 {
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
}

.app-list {
  display: grid;
  gap: 18px;
}

.app-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
}

.app-card.voice-command-atlas-card {
  border-color: #ddcde8;
  background: #f7f1fb;
}

.app-card.muted {
  box-shadow: none;
}

.app-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.app-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.app-card h2 a {
  color: var(--text);
}

.app-card h2 a:hover {
  color: var(--brand);
}

.platform {
  margin: 0;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #89351f;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.metadata div {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.metadata dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metadata dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin: 7px 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 28px;
}

.email-link {
  overflow-wrap: anywhere;
  font-size: clamp(1.45rem, 6vw, 2.6rem);
  font-weight: 800;
}

.note-box {
  padding: 20px;
  box-shadow: none;
  background: var(--surface-strong);
}

.legal-page {
  max-width: 860px;
  padding: 68px 0;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1;
}

.legal-page h2 {
  margin-top: 34px;
}

.app-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 48px;
  padding: 68px 0 40px;
}

.app-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.app-hero-media {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.product-icon {
  width: min(190px, 52vw);
  height: min(190px, 52vw);
  aspect-ratio: 1;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.app-facts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.app-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.app-facts div {
  padding: 14px;
}

.app-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.product-copy h2,
.feature-panel h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.screenshot-carousel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-viewport {
  position: relative;
  background: var(--surface-strong);
}

.carousel-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.carousel-image-button:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: -6px;
}

.carousel-image-button img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: contain;
}

.carousel-control {
  position: absolute;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--surface) 70%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  font: inherit;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--surface);
}

.carousel-control.previous {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.carousel-copy {
  padding: 16px 18px 8px;
}

.carousel-count {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-caption {
  min-height: 3.1em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px 18px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  width: 32px;
  background: var(--brand);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
}

.lightbox-panel {
  position: relative;
  width: min(1200px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 12px;
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-panel p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.lightbox-close {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font: inherit;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.product-copy,
.feature-panel {
  display: grid;
  gap: 24px;
}

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

.copy-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-list-grid .check-list {
  margin: 0;
}

.product-sections .feature-card:hover {
  transform: none;
}

.effective-date {
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  gap: 14px;
}

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

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    position: relative;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    content: "";
  }

  .nav-toggle-bars::before {
    transform: translateY(-6px);
  }

  .nav-toggle-bars::after {
    transform: translateY(4px);
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    z-index: 5;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

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

  .nav-dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none;
  }

  .hero,
  .app-hero,
  .intro-grid,
  .home-app-grid,
  .home-routes,
  .two-column,
  .contact-panel,
  .copy-columns,
  .feature-list-grid {
    grid-template-columns: 1fr;
  }

  .app-hero {
    gap: 30px;
    padding-top: 38px;
  }

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

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 38px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(13, 27, 32, 0.9) 0%, rgba(13, 27, 32, 0.72) 48%, rgba(13, 27, 32, 0.94) 100%);
  }

  .home-hero-inner {
    padding: 46px 0 34px;
  }

  .home-hero h1 {
    font-size: 3.6rem;
  }

  .home-hero-shot {
    width: 760px;
    opacity: 0.52;
  }

  .home-hero-shot-primary {
    right: -360px;
    bottom: 130px;
  }

  .home-hero-shot-secondary {
    right: -160px;
    bottom: -20px;
    width: 520px;
  }

  .home-hero-links {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .app-card,
  .app-card-heading,
  .callout,
  .site-footer {
    display: block;
  }

  .app-icon {
    margin-bottom: 18px;
  }

  .metadata {
    grid-template-columns: 1fr;
  }

  .status-pill,
  .callout .button {
    margin-top: 14px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .carousel-control.previous {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .carousel-caption {
    min-height: 4.65em;
  }

  .lightbox {
    padding: 14px;
  }

  .site-footer div {
    margin-top: 10px;
  }
}

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

  .feature-card:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121619;
    --surface: #1b2227;
    --surface-strong: #263038;
    --text: #f2f6f8;
    --muted: #b3c0c9;
    --line: #34414a;
    --brand: #6db8c7;
    --brand-strong: #92d5e0;
    --accent: #ffad8e;
    --accent-soft: #4c2a22;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  }

  .button.primary {
    color: #102024;
  }

  .panel-content {
    background: linear-gradient(135deg, #243640, #3a2822);
  }

  .status-pill {
    color: #ffd7ca;
  }

  .home-app-card.voice-command-atlas-card {
    border-color: #59436a;
    background: #251d2d;
  }

  .app-card.voice-command-atlas-card {
    border-color: #59436a;
    background: #251d2d;
  }

  .home-app-card.voice-command-atlas-card .home-app-media {
    background: #211929;
  }
}
