:root {
  --bg: #eef7fb;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #1d2522;
  --muted: #65716c;
  --line: rgba(216, 228, 232, 0.9);
  --accent: #28685a;
  --accent-strong: #17483f;
  --accent-soft: #e5f1ec;
  --shadow: 0 18px 42px rgba(29, 37, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(rgba(238, 247, 251, 0.7), rgba(238, 247, 251, 0.84)),
    url("assets/icons/wavy_blue_background_1.jpeg") center / cover fixed,
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

.home-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  padding: 1rem;
}

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

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  width: min(100% - 1.75rem, 70rem);
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.9rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  border-radius: 0.65rem;
  object-fit: cover;
}

.brand-logo {
  width: min(11.5rem, 44vw);
  min-width: 0;
  height: 1.7rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.home-screen {
  width: min(100%, 88rem);
  margin-inline: auto;
  border: 0.72rem solid #141514;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 48% 29%, rgba(255, 223, 164, 0.32), transparent 18rem),
    radial-gradient(circle at 52% 26%, rgba(214, 188, 240, 0.22), transparent 24rem),
    rgba(239, 249, 250, 0.83);
  box-shadow: 0 2rem 4rem rgba(14, 25, 25, 0.22);
  overflow: hidden;
}

.home-screen .site-header,
.home-screen main {
  width: min(100% - 1.75rem, 62rem);
}

.home-header {
  padding-block: 1rem 0.55rem;
}

.home-nav {
  gap: 0.8rem;
}

.home-nav a {
  min-height: 2.15rem;
  padding-inline: 0.35rem;
  border-color: transparent;
  background: transparent;
  color: #252928;
  font-size: 0.88rem;
}

.home-nav a:last-child {
  padding-inline: 0.85rem;
  border-color: rgba(20, 21, 20, 0.55);
  background: rgba(255, 255, 255, 0.26);
}

.home-nav a:hover,
.home-nav a[aria-current="page"] {
  border-color: rgba(20, 21, 20, 0.55);
  background: rgba(255, 255, 255, 0.54);
}

.home-main {
  padding-bottom: 1.2rem;
}

.home-page .site-footer {
  width: min(100% - 2rem, 52rem);
  border-top: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  padding-block: 1.25rem 2.25rem;
  text-align: center;
}

.home-page .hero {
  padding-block: 3.6rem 2.7rem;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  width: min(100%, 28rem);
}

.hero-card {
  position: relative;
  display: grid;
  width: min(100%, 54rem);
  justify-items: center;
  padding: 4.9rem 1.35rem 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0.85rem;
  background: rgba(255, 254, 249, 0.79);
  box-shadow: 0 1.15rem 2rem rgba(29, 37, 34, 0.14);
  text-align: center;
}

.hero-mascot {
  position: absolute;
  top: -3.1rem;
  width: min(38vw, 8.8rem);
  filter: drop-shadow(0 0.45rem 0.12rem rgba(29, 37, 34, 0.17));
}

.hero-card h1 {
  max-width: 14ch;
  margin: 0;
  color: #151716;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 11vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-card p {
  max-width: 35rem;
  margin: 0.85rem 0 0;
  color: #242928;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: 2.35rem;
}

h2 {
  margin-bottom: 0;
  font-size: 1.85rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.12rem;
}

.page-header > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.app-icon-frame {
  display: grid;
  width: min(48vw, 13rem);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24%;
  background: var(--surface);
  box-shadow:
    0 1.2rem 3rem rgba(38, 82, 102, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.app-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  margin: 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.1;
}

.hero-kicker {
  margin: -0.35rem 0 0;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 600;
}

.store-links {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(100%, 18.2rem);
  min-height: 3.35rem;
  align-items: center;
  margin-top: 1.45rem;
  border: 1px solid rgba(205, 219, 221, 0.85);
  border-radius: 999px;
  background: rgba(243, 251, 252, 0.88);
  box-shadow: 0 0.95rem 1.4rem rgba(29, 37, 34, 0.17);
  overflow: hidden;
}

.store-link {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding-inline: 0.8rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.store-link img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.store-divider {
  width: 1px;
  height: 1.8rem;
  background: rgba(175, 193, 197, 0.86);
}

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

.section {
  padding-block: 3.5rem 4.8rem;
  border-top: 1px solid var(--line);
}

.home-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(100%, 54rem);
  margin-inline: auto;
  padding-block: 0 1.25rem;
  border-top: 2px solid rgba(165, 214, 177, 0.58);
}

.section-heading {
  display: grid;
  gap: 0.35rem;
  max-width: 38rem;
  margin-bottom: 1.35rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.9rem;
}

.card {
  min-height: 12rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.home-features .card {
  min-height: 0;
  padding: 1.5rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-features .card h3 {
  margin-bottom: 0.35rem;
  color: #151716;
  font-size: clamp(1.55rem, 8vw, 2rem);
  line-height: 1.02;
}

.home-features .card p {
  max-width: 17rem;
  color: #252928;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.25;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.7rem;
  background: center / contain no-repeat;
}

.feature-icon-quiet {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23141514' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50 17c-17 0-31 14-31 31s14 31 31 31c11 0 20-5 26-14'/%3E%3Cpath d='M50 29v20l13 8'/%3E%3Cpath d='M67 19c0 15-12 24-24 23 0-14 10-24 24-23Z' fill='%23b8e8c5'/%3E%3Cpath d='M43 42c2-11 9-18 18-22'/%3E%3C/g%3E%3C/svg%3E");
}

.feature-icon-gift {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23141514' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 42h52v35H22z' fill='%23ecfff0'/%3E%3Cpath d='M18 31h60v13H18z'/%3E%3Cpath d='M48 31v46M28 53h40'/%3E%3Cpath d='M48 31c-10-16-26-7-17 2 6 5 17-2 17-2Zm0 0c10-16 26-7 17 2-6 5-17-2-17-2Z'/%3E%3Ccircle cx='70' cy='69' r='13' fill='%23b8e8c5'/%3E%3Cpath d='m64 69 4 4 8-9'/%3E%3C/g%3E%3C/svg%3E");
}

.feature-icon-lock {
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23141514' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='46' cy='24' rx='25' ry='10' fill='%23ffffff'/%3E%3Cpath d='M21 24v34c0 6 11 11 25 11 7 0 14-1 18-4M71 24v25'/%3E%3Cpath d='M21 41c0 6 11 11 25 11 6 0 12-1 17-3M21 58c0 6 11 11 25 11'/%3E%3Crect x='56' y='54' width='24' height='23' rx='3' fill='%23b8e8c5'/%3E%3Cpath d='M62 54v-5a6 6 0 0 1 12 0v5M68 63v6'/%3E%3C/g%3E%3C/svg%3E");
}

.card p,
.content p {
  color: var(--muted);
}

.page {
  padding-block: 3rem 4.8rem;
}

.page-header {
  padding-bottom: 1.9rem;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 100%;
  margin-bottom: 0.8rem;
}

.content {
  max-width: 46rem;
  padding-top: 2rem;
}

.content h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.25rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin: 1.3rem 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.content a {
  color: var(--accent-strong);
  font-weight: 700;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  padding-block: 1.1rem 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: grid;
  gap: 0;
}

.site-footer a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

@media (min-width: 42rem) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 3rem, 70rem);
  }

  .brand-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
  }

  .brand-logo {
    width: 14rem;
    height: 2rem;
  }

  .home-page {
    padding: 1.2rem;
  }

  .home-screen {
    border-width: 0.78rem;
  }

  .home-screen .site-header,
  .home-screen main {
    width: min(100% - 4rem, 62rem);
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: auto;
    padding-block: 2rem 2.8rem;
  }

  .page-header > p:not(.eyebrow) {
    font-size: 1.1rem;
  }

  .app-icon-frame {
    width: min(34vw, 15rem);
  }

  .card {
    padding: 1.4rem;
  }

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

  .home-features .card {
    padding: 1.5rem 1.6rem 1.1rem;
  }

  .home-features .card + .card {
    border-left: 2px solid rgba(165, 214, 177, 0.58);
  }
}

@media (min-width: 58rem) {
  .site-header {
    padding-block: 1.2rem;
  }

  .hero {
    min-height: auto;
    padding-block: 2.25rem 3.25rem;
  }

  h1 {
    font-size: 4.6rem;
  }

  .app-icon-frame {
    width: min(24vw, 17rem);
  }

  .section {
    padding-block: 4.5rem 6rem;
  }

  .page {
    padding-block: 5rem 6rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .site-footer nav {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1.4rem;
  }

  .home-page .site-footer {
    grid-template-columns: auto auto;
    width: min(100% - 3rem, 52rem);
    justify-content: space-between;
    justify-items: stretch;
    align-items: center;
    padding-block: 0.85rem 0.5rem;
  }

  .home-page .site-footer nav {
    order: -1;
    gap: 0.7rem;
  }

  .home-page .site-footer nav a + a::before {
    content: "|";
    margin-right: 0.7rem;
    color: rgba(29, 37, 34, 0.55);
  }

  .home-page .site-footer a {
    min-height: 2rem;
  }
}

/* Reference-style home page */
.home-page {
  display: block;
  min-height: 100vh;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  background:
    linear-gradient(rgba(233, 248, 255, 0.78), rgba(233, 248, 255, 0.88)),
    url("assets/icons/wavy_blue_background_1.jpeg") center / cover fixed,
    #eaf8ff;
}

.home-page .home-screen {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: calc(100vh - clamp(1.6rem, 4vw, 3rem));
  border: 0;
  border-radius: clamp(1rem, 2vw, 1.7rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 58% 9%, rgba(196, 229, 247, 0.78), transparent 28rem),
    rgba(230, 247, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.home-page .home-screen::before,
.home-page .home-screen::after {
  position: absolute;
  z-index: -1;
  width: 17rem;
  height: 34rem;
  content: "";
  opacity: 0.18;
  background: url("data:image/svg+xml,%3Csvg width='220' height='440' viewBox='0 0 220 440' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237ba6b4' stroke-width='2'%3E%3Cpath d='M111 430C96 320 116 216 107 120 104 83 91 44 70 12'/%3E%3Cpath d='M111 395c-37-44-70-55-100-44 24 44 61 61 100 44Z'/%3E%3Cpath d='M103 300c-49-18-75-45-82-80 45 12 72 36 82 80Z'/%3E%3Cpath d='M108 210c-39-37-51-71-35-103 31 34 44 68 35 103Z'/%3E%3Cpath d='M116 355c39-37 72-44 100-24-34 31-68 39-100 24Z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-page .home-screen::before {
  left: -1.4rem;
  bottom: -7rem;
}

.home-page .home-screen::after {
  right: -1.4rem;
  bottom: -7rem;
  transform: scaleX(-1);
}

.home-page .home-header,
.home-page .home-main,
.home-page .site-footer {
  width: min(100% - clamp(1.25rem, 4vw, 4rem), 108rem);
}

.home-page .home-header {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-block: clamp(1.1rem, 3vw, 2.1rem) 0;
}

.home-page .home-header .brand {
  display: inline-flex;
  justify-self: center;
}

.home-page .brand-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.75rem;
}

.home-page .brand-logo {
  width: min(17rem, 52vw);
  height: 2.35rem;
}

.home-page .home-nav {
  width: 100%;
  gap: clamp(0.45rem, 2vw, 1.25rem);
  justify-content: center;
  display: none;
}

.home-page .home-nav a {
  min-height: 2.5rem;
  color: #202626;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.home-page .home-nav a:last-child {
  padding-inline: 1.25rem;
  border-color: rgba(106, 137, 145, 0.24);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.home-page .home-main {
  padding: clamp(2.8rem, 7vw, 7rem) 0 clamp(1.4rem, 3vw, 2.25rem);
}

.home-page .home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
  justify-items: stretch;
  padding: 0;
  text-align: left;
}

.home-page .hero-copy {
  position: relative;
  display: grid;
  width: 100%;
  justify-items: start;
  gap: 1.35rem;
}

.home-page .home-hero > .hero-copy {
  display: none;
}

.home-page .hero-copy h1 {
  max-width: 13ch;
  margin: 0;
  color: #1b2020;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 10.2vw, 5.15rem);
  font-weight: 900;
  line-height: 1.02;
}

.home-page .hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.home-page .hero-copy > p {
  max-width: 33rem;
  margin: 0;
  color: #222a29;
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.32;
  overflow-wrap: break-word;
}

.home-page .home-features {
  --feature-gap: 0.9rem;
  display: grid;
  grid-auto-columns: min(82vw, 21rem);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: var(--feature-gap);
  position: relative;
  width: 100%;
  margin: clamp(1.4rem, 4vw, 2.7rem) 0 0;
  padding: 0 0.1rem 1rem;
  border: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home-page .home-features::-webkit-scrollbar {
  display: none;
}

.home-page .home-features .card {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  padding: 1.35rem;
  border: 1px solid rgba(222, 236, 239, 0.86);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.2rem 2.4rem rgba(55, 99, 116, 0.09);
  scroll-snap-align: start;
}

.home-page .feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.85rem;
}

.home-page .home-features .card h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.3rem, 3vw, 1.55rem);
  font-weight: 850;
}

.home-page .home-features .card p {
  max-width: none;
  margin: 0;
  color: #283231;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-page .hero-visual {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.home-page .hero-app-icon {
  width: min(36vw, 12.5rem);
  border-radius: 22%;
  box-shadow: 0 1.4rem 3.2rem rgba(64, 148, 204, 0.24);
}

@media (max-width: 23rem) {
  .home-page .hero-copy h1 {
    font-size: 2rem;
  }
}

.home-page .device-cluster {
  position: relative;
  width: min(86vw, 31rem);
  min-height: min(96vw, 31rem);
}

.home-page .device-mockup {
  position: absolute;
  width: 45%;
  aspect-ratio: 1011 / 2022;
  filter: drop-shadow(0 1.2rem 1.5rem rgba(20, 36, 40, 0.25));
}

.home-page .device-iphone {
  --screen-top: 2.275%;
  --screen-right: 5.44%;
  --screen-bottom: 2.374%;
  --screen-left: 5.242%;
  z-index: 2;
  left: 12%;
  top: 0;
}

.home-page .device-pixel {
  --screen-top: 2.176%;
  --screen-right: 7.715%;
  --screen-bottom: 2.077%;
  --screen-left: 7.023%;
  z-index: 1;
  right: 11%;
  top: 8%;
}

.home-page .device-screen {
  position: absolute;
  inset: var(--screen-top) var(--screen-right) var(--screen-bottom) var(--screen-left);
  width: calc(100% - var(--screen-left) - var(--screen-right));
  max-width: none;
  height: calc(100% - var(--screen-top) - var(--screen-bottom));
  border-radius: 8% / 4%;
  object-fit: cover;
}

.home-page .device-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

.home-page .store-links {
  display: flex;
  width: auto;
  min-height: 0;
  gap: 0.65rem;
  margin-top: -0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-page .store-link {
  min-height: 2.85rem;
  padding-inline: 1rem;
  border-radius: 0.35rem;
  background: #050505;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 0.55rem 1rem rgba(18, 31, 34, 0.14);
}

.home-page .store-link img {
  width: 1.6rem;
  height: 1.6rem;
}

.home-page .site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: auto;
  padding-block: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(170, 203, 213, 0.4);
  color: #2b3534;
  text-align: center;
}

.home-page .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  order: 0;
}

.home-page .site-footer nav a + a::before {
  content: none;
}

.home-page .site-footer a {
  min-height: 2rem;
  color: #1f2928;
}

@media (min-width: 48rem) {
  .home-page .home-features {
    --feature-gap: clamp(1rem, 1.5vw, 1.55rem);
    grid-auto-columns: auto;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(1.8rem, 4vw, 3rem);
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .home-page .home-features [data-carousel-clone] {
    display: none;
  }
}

@media (min-width: 64rem) {
  .home-page .home-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
  }

  .home-page .home-header .brand {
    display: inline-flex;
    order: 0;
    justify-self: start;
    margin-top: 0;
  }

  .home-page .home-nav {
    display: flex;
    width: auto;
    order: 0;
    justify-content: flex-end;
  }

  .home-page .home-hero {
    grid-template-columns: minmax(57rem, 1.28fr) minmax(28rem, 0.72fr);
    gap: clamp(3rem, 5vw, 6rem);
  }

  .home-page .hero-copy > p {
    max-width: 41.5rem;
  }

  .home-page .home-hero > .hero-copy {
    display: grid;
    align-self: end;
  }

  .home-page .home-features {
    width: min(129.94%, 65.84rem);
    margin-top: clamp(2rem, 3vw, 3rem);
  }

  .home-page .home-features .card {
    aspect-ratio: 1;
    min-height: 0;
    padding: 1.85rem;
  }

  .home-page .feature-icon {
    width: 3.85rem;
    height: 3.85rem;
  }

  .home-page .home-features .card h3 {
    font-size: 1.8rem;
  }

  .home-page .home-features .card p {
    font-size: 1.02rem;
  }

  .home-page .hero-app-icon {
    position: absolute;
    z-index: 1;
    top: clamp(0rem, 1.5vw, 1.7rem);
    right: clamp(1.5rem, 3.8vw, 3rem);
    width: min(15.73vw, 13.92rem);
  }

  .home-page .hero-visual {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    align-self: end;
    padding-top: 2.7rem;
  }

  .home-page .device-cluster {
    width: min(45.15vw, 42.84rem);
    min-height: min(54.18vw, 44.1rem);
    margin-left: clamp(-2.5rem, -2vw, -1rem);
  }

  .home-page .store-links {
    margin-left: clamp(-2.5rem, -2vw, -1rem);
  }

  .home-page .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    text-align: left;
  }

  .home-page .site-footer nav {
    justify-content: end;
  }
}
