:root {
  color-scheme: dark;
  --ink: #f8fafd;
  --muted: #a7b7c6;
  --soft: #dbe7f1;
  --deep: #06101a;
  --night: #08131e;
  --panel: rgba(13, 28, 42, 0.76);
  --panel-solid: #102132;
  --line: rgba(224, 234, 244, 0.16);
  --blue: #63b6ff;
  --mint: #6ae2af;
  --coral: #ff9172;
  --violet: #aab6ff;
  --paper: #f5f8fb;
  --paper-ink: #07111a;
  --paper-muted: #516476;
  --radius-card: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: rgba(99, 182, 255, 0.32);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 13, 21, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  animation: headerDrop 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 780;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

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

nav a {
  padding: 10px 12px;
  color: var(--soft);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 82svh;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 118px 0 64px;
  overflow: hidden;
  background: #111820;
}

.hero-bg {
  position: absolute;
  inset: -18px;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(4, 9, 14, 0.88), rgba(4, 9, 14, 0.52) 44%, rgba(4, 9, 14, 0.12)),
    linear-gradient(180deg, rgba(4, 9, 14, 0.08), rgba(4, 9, 14, 0.84)),
    url("assets/screens/dashboard.png");
  background-position: center, center, 76% 55%;
  background-size: cover, cover, min(760px, 54vw);
  background-repeat: no-repeat;
  transform-origin: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--deep));
}

.hero-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 18px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .tagline,
.hero-copy .intro,
.store-row {
  opacity: 0;
  animation: fadeLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy .eyebrow {
  animation-delay: 160ms;
}

.hero-copy h1 {
  animation-delay: 260ms;
}

.hero-copy .tagline {
  animation-delay: 380ms;
}

.hero-copy .intro {
  animation-delay: 500ms;
}

.store-row {
  animation-delay: 620ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(99, 182, 255, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(rgba(8, 19, 30, 0.9), rgba(8, 19, 30, 0.9)) padding-box,
    linear-gradient(100deg, rgba(99, 182, 255, 0.9), rgba(106, 226, 175, 0.78), rgba(170, 182, 255, 0.78)) border-box;
  box-shadow:
    0 0 0 1px rgba(99, 182, 255, 0.08),
    0 16px 46px rgba(99, 182, 255, 0.18);
  position: relative;
  overflow: hidden;
  animation:
    fadeLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms both,
    badgeGlow 4.8s ease-in-out 1.2s infinite;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  animation: shinePass 5.6s ease-in-out 1.6s infinite;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.9;
  font-weight: 880;
}

.tagline {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3.8vw, 3.35rem);
  line-height: 1.03;
  font-weight: 820;
}

.intro {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.55;
  font-weight: 560;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.powered-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-top: 24px;
  padding: 13px 18px 13px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(8, 19, 30, 0.92), rgba(8, 19, 30, 0.92)) padding-box,
    linear-gradient(100deg, rgba(255, 255, 255, 0.18), rgba(99, 182, 255, 0.72), rgba(106, 226, 175, 0.62)) border-box;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 780;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(99, 182, 255, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  overflow: hidden;
  animation:
    fadeLift 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 560ms both,
    poweredPulse 5.2s ease-in-out 1.6s infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.powered-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  animation: shinePass 6s ease-in-out 2s infinite;
}

.powered-pill > * {
  position: relative;
  z-index: 1;
}

.powered-pill:hover,
.powered-pill:focus-visible {
  border-color: rgba(106, 226, 175, 0.44);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.32),
    0 0 54px rgba(106, 226, 175, 0.18);
}

.powered-pill strong {
  color: var(--mint);
}

.powered-pill img {
  flex: 0 0 auto;
  width: 46px;
  height: 40px;
  padding: 5px;
  border-radius: 10px;
  object-fit: contain;
  rotate: 180deg;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  text-decoration: none;
  font-weight: 820;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(99, 182, 255, 0.64);
  background: rgba(99, 182, 255, 0.14);
}

.store-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.store-button span {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.store-button small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-strip p {
  margin: 0;
  padding: 22px 18px;
  background: #0a1420;
  color: var(--soft);
  text-align: center;
  font-weight: 760;
  opacity: 0;
  animation: fadeLift 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.quick-strip p:nth-child(1) {
  animation-delay: 760ms;
}

.quick-strip p:nth-child(2) {
  animation-delay: 840ms;
}

.quick-strip p:nth-child(3) {
  animation-delay: 920ms;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 860;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.section p {
  line-height: 1.55;
}

.product-shot {
  padding-top: 78px;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
}

.phone-row img {
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  object-fit: cover;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  animation: previewRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.phone-row img:nth-child(1) {
  animation-delay: 80ms;
}

.phone-row img:nth-child(2) {
  animation-delay: 210ms;
}

.phone-row img:nth-child(3) {
  animation-delay: 340ms;
}

.phone-row img:hover {
  transform: translateY(-8px);
  filter: brightness(1.05);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.36);
}

.feature-band {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: var(--paper);
  color: var(--paper-ink);
}

.feature-band .eyebrow {
  color: #1875d5;
}

.feature-band h2 {
  color: var(--paper-ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(10, 23, 36, 0.08);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(19, 38, 56, 0.08);
}

.feature-grid p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.98rem;
}

.dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.mint {
  background: #14845a;
}

.coral {
  background: #d86236;
}

.blue {
  background: #1875d5;
}

.violet {
  background: #556ade;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 56px;
  align-items: start;
}

.split-proof ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-proof li {
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-weight: 680;
  position: relative;
}

.split-proof li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(106, 226, 175, 0.12);
}

.team-section {
  padding-top: 44px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.team-card div {
  padding: 18px;
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.team-card p {
  margin: 0;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 820;
  text-transform: uppercase;
}

.mak-studio {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: #0a1420;
}

.mak-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(99, 182, 255, 0.2);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(99, 182, 255, 0.12), transparent 42%),
    linear-gradient(110deg, rgba(106, 226, 175, 0.07), transparent 35%, rgba(170, 182, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mak-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(99, 182, 255, 0.14), transparent);
  transform: translateX(-120%);
  animation: shinePass 7s ease-in-out 1s infinite;
  pointer-events: none;
}

.mak-card > * {
  position: relative;
  z-index: 1;
}

.mak-logo-block {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(99, 182, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.mak-logo-block::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 182, 255, 0.22), transparent 68%);
  animation: logoHalo 4.8s ease-in-out infinite;
}

.mak-logo-block img {
  position: relative;
  z-index: 1;
  width: min(72%, 310px);
  max-height: 165px;
  object-fit: contain;
  rotate: 180deg;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.26));
}

.mak-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#0a1420, #0a1420) padding-box,
    linear-gradient(100deg, var(--blue), var(--mint), var(--violet)) border-box;
  color: var(--mint);
  box-shadow: 0 0 42px rgba(106, 226, 175, 0.16);
  animation: badgeGlow 4.8s ease-in-out infinite;
}

.mak-copy h2 {
  background: linear-gradient(90deg, var(--ink), #bfe4ff 48%, var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mak-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.mak-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mak-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 840;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.mak-button:hover,
.mak-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(99, 182, 255, 0.52);
  background: rgba(99, 182, 255, 0.1);
}

.mak-button.primary {
  position: relative;
  border-color: rgba(99, 182, 255, 0.42);
  background: var(--blue);
  color: #04101a;
  overflow: hidden;
}

.mak-button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  animation: shinePass 5.8s ease-in-out 1.4s infinite;
  pointer-events: none;
}

.privacy-section {
  padding-top: 76px;
}

.policy-date {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 720;
}

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

.privacy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
}

.privacy-grid h3 {
  margin-top: 0;
}

.privacy-grid p {
  margin-bottom: 0;
  color: var(--soft);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 42px;
}

.final-cta img {
  width: min(100%, 360px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.final-cta a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--soft);
  font-weight: 760;
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes previewRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shinePass {
  0%,
  38% {
    transform: translateX(-120%);
  }
  62%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(99, 182, 255, 0.08),
      0 16px 46px rgba(99, 182, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(106, 226, 175, 0.18),
      0 18px 58px rgba(106, 226, 175, 0.24);
  }
}

@keyframes poweredPulse {
  0%,
  100% {
    box-shadow:
      0 18px 52px rgba(0, 0, 0, 0.28),
      0 0 42px rgba(99, 182, 255, 0.16);
  }
  50% {
    box-shadow:
      0 20px 62px rgba(0, 0, 0, 0.3),
      0 0 56px rgba(106, 226, 175, 0.22);
  }
}

@keyframes logoHalo {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.04) translate3d(-12px, 8px, 0);
  }
}

@media (max-width: 920px) {
  .site-header {
    border-radius: 18px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 80svh;
    padding-top: 96px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(4, 9, 14, 0.62), rgba(4, 9, 14, 0.9)),
      url("assets/screens/dashboard.png");
    background-position: center, 72% 52%;
    background-size: cover, min(600px, 118vw);
    opacity: 0.95;
  }

  .quick-strip,
  .feature-grid,
  .split-proof,
  .mak-card,
  .privacy-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .phone-row {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding: 4px 16px 34px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
  }

  .phone-row img {
    scroll-snap-align: center;
  }

  .phone-row img:nth-child(n) {
    transform: translateY(28px) scale(0.985);
  }

  .feature-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 24px, 520px);
    margin-top: 12px;
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 48px;
  }

  .hero-copy,
  .section,
  footer {
    width: min(100% - 24px, 520px);
  }

  h1 {
    font-size: clamp(2.85rem, 12.8vw, 3.35rem);
  }

  .tagline {
    font-size: clamp(1.58rem, 7.3vw, 2rem);
    max-width: 340px;
  }

  .intro {
    font-size: 1rem;
    max-width: 340px;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    justify-content: center;
  }

  .powered-pill {
    align-items: flex-start;
    border-radius: 18px;
  }

  .quick-strip p {
    padding: 16px;
  }

  .section {
    padding-block: 64px;
  }

  .product-shot {
    padding-top: 56px;
  }

  .final-cta img {
    width: min(100%, 310px);
  }

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

  .mak-card {
    padding: 22px;
  }

  .mak-actions {
    display: grid;
  }

  footer {
    display: grid;
    padding-bottom: 30px;
  }

  footer div {
    justify-content: flex-start;
  }
}

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

  .site-header,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .tagline,
  .hero-copy .intro,
  .store-row,
  .powered-pill,
  .quick-strip p,
  .phone-row img {
    opacity: 1 !important;
    transform: none !important;
  }
}
