:root {
  --sky-50: #f0f9ff;
  --sky-100: #dff4ff;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-900: #0c4a6e;
  --lime: #8eea23;
  --sun: #ffd029;
  --orange: #f97316;
  --pink: #ff4fb8;
  --blue: #246bff;
  --ink: #123047;
  --muted: #557086;
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.88);
  --border: rgba(14, 74, 110, 0.14);
  --shadow: 0 24px 70px rgba(14, 74, 110, 0.16);
  --shadow-strong: 0 30px 80px rgba(14, 74, 110, 0.25);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 208, 41, 0.22), transparent 24rem),
    radial-gradient(circle at 85% 10%, rgba(142, 234, 35, 0.18), transparent 26rem),
    linear-gradient(180deg, #eff8ff 0%, #ffffff 48%, #edf9ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(135deg, transparent 0 42%, rgba(14, 165, 233, 0.16) 42% 50%, transparent 50% 100%),
    linear-gradient(45deg, transparent 0 42%, rgba(14, 165, 233, 0.12) 42% 50%, transparent 50% 100%);
  background-size: 112px 112px;
  background-position: 0 0, 35px 34px;
}

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

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--sky-900);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: var(--container);
  margin: 14px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 46px rgba(14, 74, 110, 0.12);
  backdrop-filter: blur(22px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--border);
  box-shadow: 0 18px 52px rgba(14, 74, 110, 0.18);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px 12px 10px 16px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #dff4ff);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.22);
}

.brand-logo img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name,
.footer-brand span {
  font-family: "Righteous", "Poppins", sans-serif;
  color: var(--sky-900);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--sky-900);
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  background: var(--white);
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-download,
.modal-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #ffb21f);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-download:hover,
.modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.34);
}

.nav-download svg,
.store-button svg,
.eyebrow svg,
.floating-card svg,
.feature-icon svg,
.modal-close svg,
.modal-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--sky-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--lime), var(--sky-400));
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 86px 0 76px;
}

.hero-grid,
.footer-grid,
.download-panel {
  width: var(--container);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
}

.ambient-one {
  width: 220px;
  height: 220px;
  left: -72px;
  top: 18%;
  background: rgba(56, 189, 248, 0.2);
}

.ambient-two {
  width: 280px;
  height: 280px;
  right: -95px;
  bottom: 8%;
  background: rgba(255, 79, 184, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--sky-900);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Righteous", "Poppins", sans-serif;
  color: var(--sky-900);
  letter-spacing: -0.03em;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6.2vw, 5.9rem);
  line-height: 0.95;
  text-shadow: 0 12px 30px rgba(14, 165, 233, 0.18);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 10px 18px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
}

.store-button small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.76;
}

.store-button-dark {
  color: var(--white);
  background: linear-gradient(135deg, #14233a, #0c4a6e);
  box-shadow: 0 18px 38px rgba(12, 74, 110, 0.25);
}

.store-button-light {
  color: var(--sky-900);
  border: 1px solid rgba(14, 165, 233, 0.22);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof strong {
  color: var(--orange);
}

.hero-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  margin-top: -44px;
}

.melody-map {
  position: absolute;
  inset: 7% 0 3%;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.5);
  background-size: 42px 42px;
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.12), var(--shadow);
  transform: rotate(-3deg);
}

.path {
  position: absolute;
  border-radius: 999px;
  box-shadow: 0 0 20px currentColor;
}

.path::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.path-one {
  top: 18%;
  left: 12%;
  width: 54%;
  height: 7px;
  color: var(--sun);
  background: currentColor;
}

.path-two {
  top: 42%;
  left: 20%;
  width: 42%;
  height: 7px;
  color: var(--pink);
  background: currentColor;
}

.path-three {
  bottom: 19%;
  left: 9%;
  width: 66%;
  height: 7px;
  color: var(--lime);
  background: currentColor;
}

.note {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.9);
  animation: floatNote 4.2s ease-in-out infinite;
}

.note::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 7px;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--white);
}

.note-one {
  left: 19%;
  bottom: 28%;
}

.note-two {
  right: 20%;
  top: 22%;
  animation-delay: 0.9s;
}

.note-three {
  right: 28%;
  bottom: 15%;
  animation-delay: 1.6s;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(335px, 66vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 13px solid #27364f;
  border-radius: 42px;
  background: #27364f;
  box-shadow: var(--shadow-strong);
  transform: rotate(4deg);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.16));
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

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

.floating-card {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  padding: 14px 16px;
  color: var(--sky-900);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(14, 74, 110, 0.16);
  font-size: 0.86rem;
  font-weight: 800;
}

.floating-card svg {
  color: var(--orange);
  flex: 0 0 auto;
}

.floating-card-top {
  top: 12%;
  right: 2%;
}

.floating-card-bottom {
  left: 0;
  bottom: 13%;
}

.features {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0 88px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.download-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.section-heading p,
.download-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-orbit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(14, 74, 110, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-tall {
  grid-column: span 2;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-500), var(--pink));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.24);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--sky-900);
  font-size: 1.22rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 28px);
  align-items: center;
  margin-top: 34px;
}

.screen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid #27364f;
  border-radius: 34px;
  background: #27364f;
  box-shadow: 0 24px 58px rgba(14, 74, 110, 0.18);
  transform: rotate(-2deg);
}

.screen-card-raised {
  transform: translateY(-22px) rotate(2deg);
}

.screen-card img {
  width: 100%;
  height: auto;
}

.screen-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(12, 36, 56, 0.48);
  backdrop-filter: blur(10px);
  font-weight: 800;
  text-align: center;
}

.download {
  padding: 32px 0 92px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 54px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 208, 41, 0.26), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(216, 244, 255, 0.88));
  box-shadow: var(--shadow);
}

.download-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% 38%;
  height: 210px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(255, 79, 184, 0.22), rgba(56, 189, 248, 0.25), rgba(142, 234, 35, 0.22));
  transform: rotate(-6deg);
}

.download-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 330px;
  border-radius: 32px;
  background: linear-gradient(180deg, #dbe7ff, #eff8ff);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.14);
}

.download-art img {
  width: min(280px, 70%);
  filter: drop-shadow(0 24px 34px rgba(14, 74, 110, 0.24));
}

.download-art-banner {
  min-height: auto;
  aspect-ratio: 1024 / 500;
  overflow: hidden;
  padding: 18px;
}

.download-art-banner img {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 1024 / 500;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 22px 42px rgba(14, 74, 110, 0.2);
  filter: none;
}

.download-copy {
  position: relative;
  z-index: 1;
}

.site-footer {
  width: var(--container);
  margin: 0 auto 24px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: var(--radius-xl);
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(14, 74, 110, 0.1);
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-links a {
  color: var(--sky-900);
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.copyright {
  margin: 24px 0 0;
  border-top: 1px solid rgba(14, 165, 233, 0.14);
  padding-top: 18px;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 44, 69, 0.5);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(440px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 34px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  transform: translateY(14px) scale(0.97);
  transition: transform 180ms ease;
}

.modal.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--sky-900);
  background: rgba(14, 165, 233, 0.1);
  cursor: pointer;
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-card h2 {
  margin-bottom: 10px;
  color: var(--sky-900);
  font-family: "Righteous", "Poppins", sans-serif;
  font-size: 2.3rem;
}

.modal-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
}

@keyframes floatNote {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(8deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: min(100% - 20px, 760px);
    border-radius: 28px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(14, 74, 110, 0.16);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 62px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-stage {
    min-height: 620px;
    margin-top: -18px;
  }

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

  .screenshot-rail {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    overflow-x: auto;
    padding: 4px 4px 22px;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    scroll-snap-align: center;
  }

  .download-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 22px, 1180px);
  }

  .nav-download {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    padding: 46px 0 54px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .hero-actions,
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    justify-content: center;
    width: 100%;
  }

  .hero-stage {
    min-height: 520px;
    margin-top: 0;
  }

  .phone-frame {
    width: min(292px, 78vw);
    border-width: 10px;
    border-radius: 34px;
  }

  .floating-card {
    max-width: 190px;
    padding: 12px 13px;
    font-size: 0.76rem;
  }

  .floating-card-top {
    top: 4%;
    right: -3%;
  }

  .floating-card-bottom {
    left: -3%;
    bottom: 8%;
  }

  .feature-orbit {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide,
  .feature-card-tall {
    grid-column: auto;
  }

  .screenshot-rail {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    margin-inline: -6px;
  }

  .screen-card,
  .screen-card-raised {
    transform: none;
    border-width: 8px;
    border-radius: 28px;
  }

  .download-art {
    min-height: 240px;
  }

  .download-art img {
    width: min(220px, 74%);
  }

  .download-art-banner img {
    max-width: 100%;
  }

  .site-footer {
    padding: 24px;
  }
}

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