/* Movio Entregas — Site institucional */

:root {
  --primary: #f5874f;
  --primary-soft: color-mix(in srgb, var(--primary) 70%, white 5%);
  --primary-glow: color-mix(in srgb, var(--primary) 20%, transparent);
  --primary-dark: #e06835;
  --bg-deep: #ffffff;
  --bg-elevated: #f7f5f2;
  --bg-subtle: #f3f0ec;
  --bg-card: #ffffff;
  --text: #1a1714;
  --text-muted: rgba(26, 23, 20, 0.62);
  --text-on-primary: #ffffff;
  --glass-edge: rgba(0, 0, 0, 0.08);
  --glass-inner: rgba(0, 0, 0, 0.04);
  --border: rgba(0, 0, 0, 0.08);
  --shadow-elev: 0 16px 48px rgba(0, 0, 0, 0.08);
  --blur: blur(20px) saturate(1.2);
  --header-h: 72px;
  --container: min(1200px, 100% - 2.5rem);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --ok: #22c55e;
  --warn: #f59e0b;
  --info: #60a5fa;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--text-on-primary);
  font-weight: 700;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-label {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-lede {
  margin: 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-lede {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(145deg, var(--primary-soft), var(--primary));
  color: var(--text-on-primary);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--primary) 50%, transparent);
}

.btn--ghost {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--glass-edge);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.14);
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-group--center {
  justify-content: center;
}

.btn.is-disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

.btn--block {
  width: 100%;
}

/* Glass card */
.glass-card {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(168deg, #ffffff 0%, #faf8f6 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elev);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(180px, 42vw);
}

.site-header__logo img {
  display: block;
  height: clamp(28px, 5vw, 38px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

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

.mobile-nav a {
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mobile-nav__actions .btn {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
}

.hero__blob--a {
  width: min(85vw, 560px);
  height: min(85vw, 560px);
  background: radial-gradient(circle at 35% 35%, rgba(245, 135, 79, 0.35), transparent 70%);
  top: -15%;
  left: -10%;
  animation: drift-a 22s ease-in-out infinite;
}

.hero__blob--b {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  background: radial-gradient(circle at 60% 40%, rgba(255, 200, 160, 0.25), transparent 65%);
  bottom: -10%;
  right: -8%;
  animation: drift-b 26s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 0%, rgba(245, 135, 79, 0.12), transparent 58%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px var(--ok);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__title em {
  font-style: normal;
  color: var(--primary);
}

.hero__lede {
  margin: 0 0 2rem;
  max-width: 48ch;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Dashboard mock */
.dashboard-mock {
  position: relative;
  padding: 1.25rem;
  border-radius: clamp(16px, 3vw, 24px);
  background: linear-gradient(165deg, #ffffff, #faf8f6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elev);
}

.dashboard-mock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.dashboard-mock__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dashboard-mock__live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ok);
}

.dashboard-mock__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse-dot 2s ease infinite;
}

.dashboard-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dashboard-mock__stat {
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.dashboard-mock__stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.dashboard-mock__stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-mock__stat-trend {
  font-size: 0.7rem;
  color: var(--ok);
  margin-top: 0.35rem;
}

.dashboard-mock__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.delivery-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.delivery-row__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-soft), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-on-primary);
}

.delivery-row__info {
  flex: 1;
  min-width: 0;
}

.delivery-row__name {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delivery-row__meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.delivery-row__badge {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.delivery-row__badge--route {
  background: rgba(96, 165, 250, 0.15);
  color: var(--info);
}

.delivery-row__badge--pickup {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warn);
}

.delivery-row__badge--wait {
  background: var(--bg-subtle);
  color: var(--text-muted);
}

/* Stats bar */
.stats-bar {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-item__value {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.stat-item__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Problems */
.problems-grid {
  display: grid;
  gap: 1.25rem;
}

.problem-card {
  padding: 1.5rem;
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(245, 135, 79, 0.12);
  color: var(--primary);
}

.problem-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.problem-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-soft), var(--primary));
  color: var(--text-on-primary);
  font-weight: 800;
  font-size: 0.95rem;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Profile cards (estilo iFood) */
.profile-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.profile-card__illus {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #fff5ef 0%, var(--bg-elevated) 55%, #f9ddd0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.profile-card__illus svg,
.profile-card__illus img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  object-position: center;
}

.profile-card__illus--estabelecimento img {
  width: 92px;
  height: 92px;
  object-position: 52% center;
}

.profile-card__illus--entregador img {
  width: 78px;
  height: 78px;
}

.profile-card__title {
  margin: 1.25rem 0 0;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.profile-card__text {
  margin: 0.75rem 0 1.5rem;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 36ch;
}

/* Features */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(245, 135, 79, 0.1);
  color: var(--primary);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Integrations */
.integrations {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.integration-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.integration-pill:hover {
  border-color: rgba(0, 0, 0, 0.14);
  background: var(--bg-elevated);
}

.integration-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item.is-open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA band */
.cta-band {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-band__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-on-primary);
  text-wrap: balance;
}

.cta-band__lede {
  margin: 0 auto 2rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.cta-band .btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-on-primary);
}

.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.cta-band .btn--primary {
  background: var(--text-on-primary);
  color: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Footer */
.site-footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand img {
  height: clamp(26px, 4vw, 34px);
  width: auto;
  max-width: min(160px, 50vw);
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
  opacity: 1;
}

.site-footer__brand p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.site-footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--text);
}

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6%, 8%) scale(1.05);
  }
}

@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1.02);
  }
  50% {
    transform: translate(-7%, -5%) scale(1);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Responsive */
@media (min-width: 640px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .site-header__actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

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

  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .step-card {
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
    text-align: center;
  }

  .step-card::before {
    position: static;
    margin: 0 auto 1rem;
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__blob--a,
  .hero__blob--b {
    animation: none;
  }

  .dashboard-mock__live::before {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-card,
  .dashboard-mock {
    background: #ffffff;
  }
}
