/* Mesaup landing — upgrade v2 (carrega depois do CSS inline) */

/* ── Bootstrap Icons — garantir que ::before usa a fonte correcta ── */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  display: inline-block;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
i.bi {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Pesquisa restaurantes (Mesaup laranja/branco) ── */
.mesa-search {
  position: relative;
  margin-top: 72px;
  padding: 48px 5% 40px;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.mesa-search-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.mesa-search-glow::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -200px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
}
.mesa-search-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.mesa-search-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.mesa-search-eyebrow .bi {
  font-size: 0.9rem;
}
.mesa-search-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.mesa-search-title span {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mesa-search-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}
.mesa-search-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--dark2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
html[data-theme="light"] .mesa-search-card {
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.mesa-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
  flex: 0 0 auto;
}
.mesa-field--grow {
  flex: 1 1 200px;
  min-width: 0;
}
.mesa-field-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mesa-field-label .bi {
  color: var(--orange);
  font-size: 0.85rem;
}
.mesa-field select,
.mesa-field input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--card);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
html[data-theme="light"] .mesa-field select,
html[data-theme="light"] .mesa-field input {
  color: #0f172a;
  background: #f8fafc;
}
.mesa-field select:focus,
.mesa-field input:focus {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.mesa-search-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s, filter 0.2s;
  min-height: 44px;
}
.mesa-search-go:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.mesa-search-go .bi {
  font-size: 1rem;
}
.mesa-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.mesa-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.mesa-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
}
.mesa-chip--ghost {
  color: var(--orange);
  border-color: rgba(249, 115, 22, 0.35);
}

.discover-restaurants {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 24px 0 28px;
  overflow: hidden;
}
.discover-restaurants-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 5% 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.discover-restaurants-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.discover-restaurants-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.discover-restaurants-link:hover {
  text-decoration: underline;
}
.discover-restaurants--static .discover-restaurants-viewport,
.discover-restaurants--few .discover-restaurants-viewport {
  overflow: visible;
  mask-image: none;
}
.discover-restaurants--static .discover-restaurants-track {
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}
.discover-restaurants--static .discover-card {
  flex: 0 0 min(100%, 280px);
}
.discover-restaurants--few .discover-restaurants-track {
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
  padding: 4px 5%;
}
.discover-restaurants--few .discover-card {
  flex: 0 0 220px;
}

.discover-restaurants-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.discover-restaurants-scroll {
  display: flex;
  width: max-content;
  animation: discover-scroll 45s linear infinite;
}
.discover-restaurants-viewport:hover .discover-restaurants-scroll {
  animation-play-state: paused;
}
.discover-restaurants-track {
  display: flex;
  gap: 16px;
  padding: 4px 5%;
  flex-shrink: 0;
}
@keyframes discover-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.discover-card {
  flex: 0 0 220px;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.discover-card:hover {
  border-color: rgba(249, 115, 22, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.discover-card-cover {
  position: relative;
  height: 120px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.15), var(--dark3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.discover-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discover-card-emoji {
  font-size: 2.5rem;
}
.discover-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(34, 197, 94, 0.9);
  color: #fff;
}
.discover-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.discover-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discover-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.discover-card-meta .bi-star-fill {
  color: #fbbf24;
  font-size: 0.72rem;
}
.discover-card-cat {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
}

html[data-theme="light"] .mesa-search {
  background: var(--dark);
}
html[data-theme="light"] .discover-restaurants {
  background: #fff;
}

@media (max-width: 640px) {
  .mesa-search {
    padding-top: 36px;
  }
  .mesa-search-card {
    flex-direction: column;
    align-items: stretch;
  }
  .mesa-field,
  .mesa-field--grow {
    flex: 1 1 auto;
    width: 100%;
  }
  .mesa-search-go {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .discover-restaurants-scroll {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* ── Nav ── */
nav {
  padding: 14px 5% !important;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
nav.nav--compact {
  padding: 10px 5% !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
html[data-theme="light"] nav.nav--compact {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.nav-logo .logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-links {
  gap: 22px !important;
}
.nav-links a {
  font-size: 0.86rem !important;
  letter-spacing: 0.01em;
}
.nav-cta .btn-primary {
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}
.nav-cta .btn-ghost {
  font-size: 0.86rem !important;
}

/* Hero primeiro — não precisa 100vh quando há conteúdo abaixo */
.hero.hero--lead {
  min-height: auto;
  padding: 56px 5% 72px;
}
.hero.hero--lead .hero-inner {
  gap: 48px;
}

/* Browser frame no mockup */
.product-frame {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--dark2);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.product-frame-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}
html[data-theme="light"] .product-frame-bar {
  background: #f1f5f9;
}
.product-frame-dots {
  display: flex;
  gap: 6px;
}
.product-frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}
.product-frame-dots span:nth-child(1) { background: #f87171; }
.product-frame-dots span:nth-child(2) { background: #fbbf24; }
.product-frame-dots span:nth-child(3) { background: #4ade80; }
.product-frame-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-frame-body {
  padding: 20px;
}
.product-dashboard {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  min-height: 220px;
}
.product-dash-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-kpi {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
}
.product-kpi-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.product-kpi-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}
.product-kpi-value.up { color: var(--green); }
.product-kpi-value.accent { color: var(--orange); }
.product-dash-main {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.08), transparent 55%), var(--card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-dash-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 12px;
}
.product-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.product-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--orange), rgba(249, 115, 22, 0.25));
  min-height: 12px;
}
.product-bars span:nth-child(2) { height: 55%; }
.product-bars span:nth-child(3) { height: 78%; }
.product-bars span:nth-child(4) { height: 42%; }
.product-bars span:nth-child(5) { height: 92%; }
.product-bars span:nth-child(6) { height: 68%; }

.mockup-card.product-frame-legacy {
  display: none;
}

/* Botões sem emoji — ícones */
.btn-hero .bi,
.btn-hero-outline .bi {
  font-size: 1.05rem;
}
.btn-hero span,
.btn-hero-outline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Trust band */
.trust-band {
  padding: 56px 5%;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-band-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.trust-band-item strong em {
  font-style: normal;
  color: var(--orange);
}
.trust-band-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Hero stats com ícones */
.hero-stats .stat-num .bi {
  font-size: 1.5rem;
  color: var(--orange);
}
/* Floating tags — cores correctas em claro e escuro */
.floating-tag {
  background: var(--dark2) !important;
  border-color: var(--border) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.floating-tag .tag-text {
  color: var(--white) !important;
}
.floating-tag .tag-sub {
  color: var(--text-muted) !important;
}
html[data-theme="light"] .floating-tag {
  background: #ffffff !important;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.12);
}
.floating-tag .tag-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-tag .tag-icon .bi {
  font-size: 1.1rem;
  color: var(--orange) !important;
}
.feature-pill .bi {
  margin-right: 6px;
  opacity: 0.85;
}

/* Marquee logos / pills */
.logos-strip--marquee {
  padding: 28px 0;
  overflow: hidden;
  background: var(--dark);
}
.logos-marquee-track {
  display: flex;
  width: max-content;
  animation: mesaup-marquee 38s linear infinite;
}
.logos-strip--marquee:hover .logos-marquee-track {
  animation-play-state: paused;
}
@keyframes mesaup-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logos-strip--marquee .logos-inner {
  max-width: none;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
  padding: 0 24px;
  gap: 12px;
}
.logos-strip--marquee .logos-inner > * {
  flex-shrink: 0;
}
.logos-strip--marquee .feature-pill {
  font-size: 0.82rem;
  padding: 10px 18px;
  background: var(--card);
  display: inline-flex;
  align-items: center;
}

/* Simulador após hero */
.simulator-section {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.simulator-section--top {
  padding-top: 88px !important;
}

/* FAQ */
.faq-section {
  padding: 100px 5%;
  background: var(--dark);
}
.faq-grid {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.35);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA polish */
.cta-section .btn-hero,
.cta-section .btn-hero-outline {
  min-width: 200px;
  justify-content: center;
}

/* Tema claro / escuro — ícones Bootstrap visíveis */
.nav-theme-btn.theme-toggle {
  position: relative;
  overflow: hidden;
}
.nav-theme-btn .theme-ico {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--text);
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 1 !important;
  transform: none !important;
}
html[data-theme="dark"] .nav-theme-btn .theme-ico-light {
  display: none !important;
}
html[data-theme="light"] .nav-theme-btn .theme-ico-dark {
  display: none !important;
}
html[data-theme="light"] .nav-theme-btn:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.35);
}
html[data-theme="light"] .nav-theme-btn .theme-ico-light {
  color: #d97706;
}

/* Footer social — ícones visíveis */
.footer-social .social-btn {
  color: var(--text) !important;
  text-decoration: none;
}
.footer-social .social-btn .bi {
  font-size: 1.2rem;
  color: var(--text) !important;
  display: inline-block;
  line-height: 1;
}
.footer-social .social-btn .bi::before {
  font-family: bootstrap-icons !important;
}
.footer-social .social-btn:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
}
.footer-social .social-btn:hover .bi {
  color: var(--orange) !important;
}

/* Player música ambiente */
.ambient-player {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 99px;
  background: rgba(13, 17, 23, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, box-shadow 0.2s;
}
html[data-theme="light"] .ambient-player {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}
.ambient-player.is-playing {
  border-color: rgba(249, 115, 22, 0.45);
}
.ambient-player.needs-gesture .ambient-hint {
  display: inline;
}
.ambient-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ambient-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.45);
}
.ambient-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.ambient-hint {
  display: none;
  font-size: 0.68rem;
  color: var(--text-muted);
  max-width: 120px;
  line-height: 1.3;
}
.ambient-player.is-playing .ambient-btn::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(249, 115, 22, 0.5);
  animation: ambient-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes ambient-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 768px) {
  .ambient-player {
    bottom: 16px;
    left: 16px;
    padding: 6px 10px 6px 6px;
  }
  .ambient-label { display: none; }
}

@media (max-width: 900px) {
  .trust-band-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .product-dashboard {
    grid-template-columns: 1fr;
  }
}

/* ── Landing mobile ── */
@media (max-width: 768px) {
  .mesa-search {
    margin-top: 64px;
    padding: 32px 4% 28px;
  }
  .mesa-search-title {
    font-size: 1.65rem;
  }
  .hero.hero--lead {
    padding: 40px 4% 48px;
  }
  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }
  .hero-sub {
    font-size: 0.92rem;
  }
  .trust-band {
    padding: 36px 4%;
  }
  .trust-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .discover-restaurants-head {
    padding: 0 4% 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .discover-card {
    flex: 0 0 min(100%, 260px);
  }
  .logos-strip--marquee {
    padding: 20px 0;
  }
  .faq-section,
  .cta-section {
    padding-left: 4%;
    padding-right: 4%;
  }
  .product-frame {
    max-width: 100%;
  }
  .product-dashboard {
    min-height: auto;
  }
  .floating-tag { display: none; }
  body:has(.mesaup-cookie-banner.is-visible) .ambient-player {
    bottom: 140px;
  }
}

@media (max-width: 480px) {
  .trust-band-inner {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    width: 100%;
  }
  .stat {
    flex: 1 1 30%;
    min-width: 90px;
  }
  .mesaup-cookie-banner {
    inset: auto 10px 10px 10px;
    max-width: none;
  }
  .ambient-player {
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logos-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}
