:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #5f5f5d;
  --line: #e6e1dc;
  --soft: #efebe6;
  --accent: #587054;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 10%, #fffaf1 0, transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

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

.hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 8px 0 18px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 48px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-copy > .hero-support {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.35;
  font-weight: 600;
}

.hero-support strong {
  color: var(--ink);
  font-weight: 850;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(56, 79, 53, 0.18);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
}

.launch-note {
  color: var(--ink);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.35;
  font-weight: 850;
}

.hero-cta {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  isolation: isolate;
}

.storyboard-title {
  max-width: none;
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.story-panels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  height: clamp(300px, 36vh, 360px);
  padding: 8px;
  border-radius: 24px;
  background: #29241f;
  box-shadow: 0 24px 52px rgba(31, 27, 23, 0.18);
}

.story-panel {
  position: relative;
  min-width: 0;
  overflow: visible;
  border-radius: 18px;
  background: #e8dfd0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.story-panel::after {
  content: "→";
  position: absolute;
  top: 47%;
  right: -23px;
  z-index: 8;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.15);
}

.story-panel:last-child::after {
  content: none;
}

.upload-panel,
.walking-panel {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 42%),
    #dcd4c7;
}

.invite-panel,
.unlock-panel {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.18)),
    url("assets/family-walk-moments.jpg");
  background-repeat: no-repeat;
}

.invite-panel {
  background-position: center center;
  background-size: 112% auto;
}

.unlock-panel {
  background-position: 72% center;
  background-size: 158% auto;
}

.mini-app {
  position: absolute;
  top: 14px;
  bottom: 56px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(74%, 190px);
  padding: 27px 10px 10px;
  overflow: hidden;
  border: 6px solid #171717;
  border-radius: 26px;
  background: #f8f8f7;
  color: var(--ink);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.24);
  transform: translateX(-50%);
}

.mini-app::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 46px;
  height: 13px;
  border-radius: 999px;
  background: #111111;
  transform: translateX(-50%);
}

.mini-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.mini-app-bar span {
  color: var(--accent);
  font-size: 8px;
}

.mini-app > small,
.upload-app > small {
  color: #716b65;
  font-size: 8px;
  font-weight: 750;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 8px;
}

.photo-grid span,
.unlocked-photo {
  border-radius: 7px;
  background-image: url("assets/child-growth-sequence.jpg");
  background-repeat: no-repeat;
  background-size: 333.333% auto;
}

.photo-grid span {
  aspect-ratio: 1;
}

.photo-grid span:nth-child(1) { background-position: center 0%; }
.photo-grid span:nth-child(2) { background-position: center 25%; }
.photo-grid span:nth-child(3) { background-position: center 50%; }
.photo-grid span:nth-child(4) { background-position: center 75%; }
.photo-grid span:nth-child(5) { background-position: center 100%; }
.photo-grid span:nth-child(6) { background-position: center 50%; }

.mini-app-button {
  display: grid;
  min-height: 25px;
  margin-top: auto;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
}

.invite-card {
  position: absolute;
  top: 18px;
  right: 16px;
  left: 16px;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.91);
  text-align: center;
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(12px);
}

.invite-card img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.invite-card small {
  color: #716b65;
  font-size: 8px;
  font-weight: 850;
}

.invite-card strong {
  font-size: 15px;
  font-weight: 950;
}

.invite-card p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.invite-card > span {
  margin-top: 3px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
}

.steps-app {
  align-items: center;
  text-align: center;
}

.steps-app > small {
  margin-top: 2px;
}

.steps-app > strong {
  margin-top: 2px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 950;
}

.steps-unit {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.progress-ring {
  display: grid;
  width: clamp(74px, 9vh, 90px);
  height: clamp(74px, 9vh, 90px);
  margin-top: 8px;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(var(--accent) 0 346deg, #d8ded5 346deg 360deg);
  box-shadow: inset 0 0 0 11px #f8f8f7;
}

.progress-ring img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.steps-app p {
  margin-top: auto;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
  font-weight: 800;
}

.unlock-app {
  right: 9px;
  left: auto;
  width: 58%;
  transform: rotate(3deg);
}

.unlock-app > small {
  color: var(--ink);
  text-align: center;
  font-weight: 900;
}

.unlocked-photo {
  width: 100%;
  aspect-ratio: 1;
  margin-top: 8px;
  background-position: center 75%;
}

.unlock-app > strong {
  margin-top: 7px;
  font-size: 9px;
  line-height: 1.15;
  text-align: center;
  font-weight: 950;
}

.story-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 6px 9px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 236, 0.94);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(10px);
}

.story-label span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.story-label strong {
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.1;
  font-weight: 950;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 7px solid #171717;
  border-radius: 34px;
  background: #111111;
  box-shadow: 0 32px 72px rgba(17, 17, 17, 0.22);
}

.phone-camera {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 8;
  width: 56px;
  height: 17px;
  border-radius: 999px;
  background: #111111;
  transform: translateX(-50%);
}

.growth-phone {
  left: 14%;
  top: 28px;
  z-index: 1;
  width: clamp(136px, 17.3vh, 166px);
  height: clamp(282px, 36vh, 345px);
  transform: rotate(-7deg);
  animation: phone-drift-left 7s ease-in-out infinite;
}

.walk-phone {
  right: 14%;
  bottom: 0;
  z-index: 2;
  width: clamp(154px, 19.8vh, 190px);
  height: clamp(310px, 40vh, 382px);
  transform: rotate(6deg);
  animation: phone-drift-right 8s ease-in-out infinite;
}

.growth-screen,
.walk-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #111111;
}

.growth-screen {
  display: flex;
  flex-direction: column;
  padding: 39px 9px 10px;
  background: #f7f7f7;
}

.growth-app-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.growth-app-bar img {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.growth-app-bar strong {
  font-size: 10px;
  font-weight: 950;
}

.growth-frame {
  width: 100%;
  aspect-ratio: 1;
  margin-top: 11px;
  overflow: hidden;
  border: 1px solid #dedbd7;
  border-radius: 15px;
  background-image: url("assets/child-growth-sequence.jpg");
  background-repeat: no-repeat;
  background-position: center 0%;
  background-size: 333.333% auto;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
  filter: grayscale(1) contrast(1.03);
  animation: growth-flipbook 3.75s linear infinite;
}

.growth-app-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 8px;
  border: 1px solid #dedbd7;
  border-radius: 11px;
  background: #ffffff;
}

.growth-app-meta span {
  color: #6b6763;
  font-size: 8px;
  font-weight: 800;
}

.growth-app-meta strong {
  font-size: 8px;
  font-weight: 950;
}

.walk-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 34%, rgba(0, 0, 0, 0.58));
}

.walk-screen > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
  animation: walk-zoom 10s ease-in-out infinite alternate;
}

.walk-topline {
  position: absolute;
  top: 48px;
  right: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(17, 17, 17, 0.5);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.walk-topline span {
  font-size: 12px;
  font-weight: 750;
}

.walk-topline strong {
  font-size: 14px;
  font-weight: 950;
}

.walk-reward {
  position: absolute;
  right: 16px;
  bottom: 58px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  animation: reward-breathe 3.6s ease-in-out infinite;
}

.reward-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #d7a044;
  color: #ffffff;
  font-size: 17px;
}

.walk-reward div {
  display: grid;
  gap: 3px;
}

.walk-reward strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.walk-reward div span {
  color: #655f5a;
  font-size: 10px;
  font-weight: 750;
}

.walk-meter {
  position: absolute;
  right: 18px;
  bottom: 30px;
  left: 18px;
  z-index: 3;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.walk-meter span {
  display: block;
  width: 96%;
  height: 100%;
  border-radius: inherit;
  background: #f6c453;
  transform-origin: left center;
  animation: meter-fill 4.5s ease-in-out infinite;
}

@keyframes growth-flipbook {
  0%, 19.999% { background-position: center 0%; }
  20%, 39.999% { background-position: center 25%; }
  40%, 59.999% { background-position: center 50%; }
  60%, 79.999% { background-position: center 75%; }
  80%, 100% { background-position: center 100%; }
}

@keyframes walk-zoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.07); }
}

@keyframes phone-drift-left {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5.5deg) translateY(-9px); }
}

@keyframes phone-drift-right {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4.5deg) translateY(8px); }
}

@keyframes meter-fill {
  0% { transform: scaleX(0.62); }
  55%, 100% { transform: scaleX(1); }
}

@keyframes reward-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.steps,
.faq,
.waitlist {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.steps {
  display: grid;
  gap: 10px;
  padding: 10px 0 30px;
}

.steps > h2 {
  max-width: none;
  margin: 0;
  font-size: 23px;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 76px);
  padding: 88px 0;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 116px;
}

.faq-heading > p:last-child {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 25px;
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details > div {
  display: grid;
  gap: 10px;
  padding: 0 44px 23px 4px;
}

.faq details p,
.faq details li,
.faq-sources {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 620;
}

.faq details ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.faq details strong {
  color: var(--ink);
}

.faq-sources {
  grid-column: 2;
  margin-top: -48px;
}

.faq-sources a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-kicker {
  color: #77736f;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  max-width: 680px;
  margin-top: 10px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.step-grid article {
  display: flex;
  min-height: 0;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: var(--surface);
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

h3 {
  margin-top: 0;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.15;
  font-weight: 950;
}

.waitlist p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
}

.waitlist {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 64px;
  padding: 64px 24px;
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
}

.waitlist h2,
.waitlist p {
  max-width: 620px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: #77736f;
  font-size: 14px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    width: min(100% - 32px, 1180px);
    padding-top: 8px;
  }

  .hero-visual {
    width: min(100%, 520px);
    min-height: 415px;
  }

  .growth-phone {
    left: 12%;
  }

  .walk-phone {
    right: 12%;
  }

  .story-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .story-panel {
    min-height: 330px;
  }

  .story-panel::after {
    content: none;
  }

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

  .steps,
  .faq,
  .waitlist,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-heading {
    position: static;
  }

  .faq-sources {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .site-header {
    padding-top: 9px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    gap: 7px;
    padding-top: 4px;
    padding-bottom: 10px;
  }

  .hero-copy {
    gap: 7px;
  }

  h1 {
    max-width: 680px;
    font-size: 40px;
  }

  .hero-copy > .hero-support {
    max-width: 720px;
    font-size: 15px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .storyboard-title {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .story-panels {
    height: 275px;
  }

  .mini-app {
    top: 10px;
    bottom: 50px;
  }

  .invite-card {
    top: 12px;
  }

  .story-label {
    right: 7px;
    bottom: 7px;
    left: 7px;
    min-height: 34px;
  }

  .growth-phone {
    top: 20px;
    width: 120px;
    height: 250px;
  }

  .walk-phone {
    width: 140px;
    height: 280px;
  }

  .launch-note {
    font-size: 15px;
  }

  .primary-button,
  .secondary-button {
    min-height: 44px;
  }

  .steps {
    gap: 7px;
    padding: 6px 0 16px;
  }

  .steps > h2 {
    font-size: 20px;
  }

  .step-grid article {
    padding: 10px;
  }
}

@media (max-width: 520px) {
  .step-grid {
    grid-template-columns: 1fr;
  }

  .story-panels {
    grid-template-columns: 1fr;
  }

  .story-panel {
    min-height: 340px;
  }

  .storyboard-title {
    font-size: 21px;
  }

  .step-grid article {
    padding: 18px;
  }

  .step-grid h3 {
    font-size: 20px;
  }

  h1 {
    font-size: clamp(40px, 12.5vw, 54px);
  }

  .actions,
  .primary-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 446px;
  }

  .growth-phone {
    left: 7%;
    top: 38px;
    width: 168px;
    height: 352px;
    border-width: 7px;
    border-radius: 32px;
  }

  .walk-phone {
    right: 4%;
    width: 196px;
    height: 406px;
    border-width: 7px;
    border-radius: 32px;
  }

  .growth-screen,
  .walk-screen {
    border-radius: 24px;
  }

  .growth-screen {
    padding: 39px 9px 10px;
  }

  .growth-app-bar {
    gap: 6px;
  }

  .growth-app-bar img {
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .growth-app-bar strong {
    font-size: 10px;
  }

  .growth-frame {
    margin-top: 11px;
    border-radius: 15px;
  }

  .growth-app-meta {
    padding: 8px;
    border-radius: 11px;
  }

  .growth-app-meta span,
  .growth-app-meta strong {
    font-size: 8px;
  }

  .phone-camera {
    top: 9px;
    width: 52px;
    height: 16px;
  }

  .walk-topline {
    top: 34px;
    right: 10px;
    left: 10px;
    padding: 8px 9px;
  }

  .walk-topline strong {
    font-size: 11px;
  }

  .walk-reward {
    right: 10px;
    bottom: 42px;
    left: 10px;
    gap: 7px;
    padding: 9px;
  }

  .reward-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .walk-reward strong {
    font-size: 10px;
  }

  .walk-reward div span {
    font-size: 8px;
  }

  .walk-meter {
    right: 12px;
    bottom: 22px;
    left: 12px;
  }

  .hero-cta {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
