:root {
  --mp-black: #07090c;
  --mp-shell: #10141a;
  --mp-raised: #171c23;
  --mp-divider: #29313b;
  --mp-ivory: #f6f3ea;
  --mp-secondary: #a8b0ba;
  --mp-amber: #f4bd4a;
  --mp-cyan: #28aae1;
  --mp-light: #f7fbfd;
  --mp-ink: #101820;
  --mp-muted: #52636b;
  --mp-max: 1220px;
}

.mayoprompt-page {
  margin: 0;
  background: var(--mp-black);
  color: var(--mp-ivory);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

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

.mayoprompt-page img {
  max-width: 100%;
}

.mayoprompt-page .mp-main {
  overflow: clip;
}

.mp-inner {
  width: min(var(--mp-max), calc(100% - 48px));
  margin-inline: auto;
}

.mp-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--mp-black) !important;
  background: var(--mp-amber);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.mp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mp-eyebrow {
  margin: 0 0 16px;
  color: var(--mp-amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mp-section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.mp-section-heading {
  margin-bottom: clamp(44px, 6vw, 82px);
}

.mp-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.65fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: end;
}

.mp-section-heading h2,
.mp-download h2 {
  margin: 0;
  max-width: 900px;
  color: inherit;
  font-size: clamp(2.35rem, 5.6vw, 5.6rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.mp-section-heading > p,
.mp-section-heading > div + p {
  margin: 0;
  color: var(--mp-secondary);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.mp-section--light .mp-section-heading > p,
.mp-section--light .mp-section-heading > div + p,
.mp-section--install .mp-section-heading > p,
.mp-section--install .mp-section-heading > div + p {
  color: var(--mp-muted);
}

/* Hero */

.mp-hero {
  --mp-hero-opacity: 0.42;
  position: relative;
  display: flex;
  min-height: min(920px, 96vh);
  padding: 138px 0 178px;
  align-items: center;
  isolation: isolate;
  background: var(--mp-black);
  border-bottom: 1px solid rgba(244, 189, 74, 0.17);
}

.mp-hero__image,
.mp-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mp-hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: 60% 49%;
  opacity: 0;
  animation: mpHeroReveal 1s 100ms ease-out forwards;
}

.mp-hero__veil {
  z-index: -2;
  background:
    radial-gradient(circle at 67% 48%, rgba(7, 9, 12, 0.1) 0 14%, rgba(7, 9, 12, 0.56) 43%, transparent 63%),
    linear-gradient(90deg, var(--mp-black) 0%, rgba(7, 9, 12, 0.96) 31%, rgba(7, 9, 12, 0.46) 65%, rgba(7, 9, 12, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.26) 0%, transparent 35%, var(--mp-black) 100%);
}

.mp-hero__inner {
  position: relative;
  z-index: 1;
}

.mp-breadcrumbs {
  position: absolute;
  top: -48px;
  left: 0;
  color: rgba(246, 243, 234, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp-breadcrumbs li + li::before {
  content: "/";
  margin: 0 9px;
  color: rgba(246, 243, 234, 0.28);
}

.mayoprompt-page .mp-breadcrumbs a {
  color: rgba(246, 243, 234, 0.75);
  text-decoration: none;
}

.mayoprompt-page .mp-breadcrumbs a:hover,
.mayoprompt-page .mp-breadcrumbs a:focus-visible {
  color: var(--mp-amber);
}

.mp-hero__copy {
  width: min(660px, 59vw);
  opacity: 0;
  transform: translateY(16px);
  animation: mpHeroCopy 720ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.mp-product-lockup {
  display: flex;
  align-items: center;
  gap: 17px;
}

.mp-product-lockup img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(244, 189, 74, 0.19);
}

.mayoprompt-page .mp-hero__title {
  margin: 0;
  color: var(--mp-ivory);
  font-family: inherit;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: none;
}

.mp-hero__headline {
  margin: 28px 0 0;
  color: var(--mp-ivory);
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.mp-hero__summary {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(246, 243, 234, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.62;
}

.mp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.mayoprompt-page .mp-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(246, 243, 234, 0.24);
  border-radius: 4px;
  color: var(--mp-ivory);
  background: rgba(7, 9, 12, 0.4);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.mayoprompt-page .mp-button:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 243, 234, 0.6);
}

.mayoprompt-page .mp-button:focus-visible,
.mp-word-option:focus-visible,
.mp-demo-toggle:focus-visible,
.mp-tempo input:focus-visible {
  outline: 3px solid var(--mp-cyan);
  outline-offset: 3px;
}

.mayoprompt-page .mp-button--primary {
  color: #16120a;
  border-color: var(--mp-amber);
  background: var(--mp-amber);
  box-shadow: 0 12px 38px rgba(244, 189, 74, 0.16);
}

.mayoprompt-page .mp-button--primary:hover {
  color: #16120a;
  background: #ffd16c;
  border-color: #ffd16c;
}

.mayoprompt-page .mp-button--ghost:hover {
  color: var(--mp-ivory);
  background: rgba(246, 243, 234, 0.08);
}

.mp-release-line {
  margin: 18px 0 0;
  color: rgba(246, 243, 234, 0.52);
  font-size: 0.82rem;
  line-height: 1.5;
}

.mp-release-line span,
.mp-download__meta span {
  padding-inline: 0.42em;
  color: var(--mp-amber);
}

.mp-hero__proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top: 1px solid rgba(246, 243, 234, 0.14);
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(12px);
}

.mp-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mp-proof-row p {
  display: flex;
  min-height: 104px;
  margin: 0;
  padding: 24px 32px;
  align-items: center;
  gap: 15px;
  border-left: 1px solid rgba(246, 243, 234, 0.12);
}

.mp-proof-row p:last-child {
  border-right: 1px solid rgba(246, 243, 234, 0.12);
}

.mp-proof-row strong {
  color: var(--mp-amber);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.mp-proof-row span {
  color: rgba(246, 243, 234, 0.66);
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Word Focus demo */

.mp-section--stage {
  background: var(--mp-shell);
}

.mp-beat-demo {
  --demo-duration: 200ms;
  border: 1px solid var(--mp-divider);
  background: var(--mp-black);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.3);
}

.mp-beat-demo__topline,
.mp-beat-demo__transport {
  display: flex;
  min-height: 80px;
  padding: 17px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--mp-shell);
}

.mp-beat-demo__topline {
  border-bottom: 1px solid var(--mp-divider);
}

.mp-beat-demo__topline > p {
  margin: 0;
  color: var(--mp-secondary);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mp-tempo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mp-tempo label {
  color: var(--mp-secondary);
  font-size: 0.84rem;
  font-weight: 650;
  white-space: nowrap;
}

.mp-tempo output {
  min-width: 3ch;
  color: var(--mp-ivory);
  font-variant-numeric: tabular-nums;
}

.mp-tempo input {
  width: clamp(140px, 24vw, 320px);
  accent-color: var(--mp-amber);
  cursor: pointer;
}

.mp-beat-demo__stage {
  position: relative;
  display: flex;
  min-height: clamp(330px, 48vw, 570px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(244, 189, 74, 0.035), transparent 34%),
    #07090c;
}

.mp-focus-word {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  color: var(--mp-ivory);
  font-size: clamp(4.1rem, 9vw, 8.2rem);
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 1;
  white-space: nowrap;
  text-transform: lowercase;
  transform: translate(-50%, -50%);
}

.mp-focus-word.is-positioned {
  transform: translate(var(--mp-orp-shift), -50%);
}

.mp-focus-word__orp {
  color: var(--mp-amber);
}

.mp-orp-marker {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--mp-amber), transparent);
  opacity: 0.9;
}

.mp-orp-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translateX(-50%);
}

.mp-orp-marker--top {
  top: calc(50% - clamp(100px, 14vw, 160px));
}

.mp-orp-marker--top::after {
  bottom: -1px;
  border-top: 7px solid var(--mp-amber);
}

.mp-orp-marker--bottom {
  bottom: calc(50% - clamp(100px, 14vw, 160px));
  background: linear-gradient(transparent, var(--mp-amber));
}

.mp-orp-marker--bottom::after {
  top: -1px;
  border-bottom: 7px solid var(--mp-amber);
}

.mp-beat-demo__transport {
  border-top: 1px solid var(--mp-divider);
}

.mp-word-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mp-word-option,
.mp-demo-toggle {
  border: 1px solid var(--mp-divider);
  border-radius: 4px;
  color: var(--mp-secondary);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.mp-word-option {
  display: flex;
  min-height: 50px;
  padding: 7px 13px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mp-word-option span {
  color: inherit;
  font-size: 0.86rem;
  font-weight: 730;
}

.mp-word-option small {
  color: inherit;
  font-size: 0.66rem;
  opacity: 0.7;
}

.mp-word-option:hover,
.mp-word-option.is-active {
  color: #17120a;
  border-color: var(--mp-amber);
  background: var(--mp-amber);
}

.mp-beat-status {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mp-beat-status p {
  margin: 0;
  color: var(--mp-secondary);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mp-demo-toggle {
  min-height: 38px;
  padding: 0 12px;
  color: var(--mp-ivory);
  font-size: 0.74rem;
  font-weight: 750;
}

.mp-demo-toggle:hover {
  border-color: var(--mp-amber);
  color: var(--mp-amber);
}

.mp-demo-toggle:disabled {
  color: var(--mp-secondary);
  border-color: var(--mp-divider);
  cursor: default;
  opacity: 0.62;
}

.mp-beat-progress {
  height: 3px;
  background: var(--mp-divider);
}

.mp-beat-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mp-amber);
  transform: scaleX(0);
  transform-origin: left center;
}

.mp-beat-demo.is-running .mp-beat-progress span {
  animation: mpBeatProgress var(--demo-duration) linear forwards;
}

.mp-fine-print {
  max-width: 860px;
  margin: 24px 0 0;
  color: #808995;
  font-size: 0.78rem;
  line-height: 1.55;
}

/* Presentation modes */

.mp-section--light {
  color: var(--mp-ink);
  background: var(--mp-light);
}

.mp-section--light .mp-eyebrow,
.mp-section--install .mp-eyebrow {
  color: #9a6810;
}

.mp-mode {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(52px, 7vw, 92px) 0;
  align-items: center;
  border-top: 1px solid rgba(16, 24, 32, 0.16);
}

.mp-mode:last-child {
  padding-bottom: 0;
}

.mp-mode--scroll .mp-mode__copy {
  grid-column: 2;
  grid-row: 1;
}

.mp-mode--scroll .mp-mode__visual {
  grid-column: 1;
  grid-row: 1;
}

.mp-mode__number {
  margin: 0 0 28px;
  color: #b47f1c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mp-mode h3 {
  margin: 0;
  color: var(--mp-ink);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.mp-mode__lead {
  margin: 22px 0 0;
  color: var(--mp-ink) !important;
  font-size: clamp(1.25rem, 2vw, 1.68rem) !important;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2 !important;
}

.mp-mode__copy > p:not(.mp-mode__number):not(.mp-mode__lead) {
  margin: 17px 0 0;
  color: var(--mp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mp-check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mp-check-list li {
  position: relative;
  padding: 12px 0 12px 25px;
  border-top: 1px solid rgba(16, 24, 32, 0.12);
  color: #33434a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mp-check-list li:last-child {
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
}

.mp-check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mp-amber);
}

.mp-mode__visual {
  margin: 0;
}

.mp-mode__visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.18);
  background: var(--mp-black);
  box-shadow: 0 25px 70px rgba(16, 24, 32, 0.16);
}

.mp-mode__visual figcaption,
.mp-controller-shot figcaption {
  margin-top: 12px;
  color: var(--mp-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Controller and capabilities */

.mp-section--controller {
  background: var(--mp-shell);
}

.mp-controller-shot {
  margin: 0;
}

.mp-controller-shot img {
  display: block;
  width: 100%;
  border: 1px solid var(--mp-divider);
  background: var(--mp-black);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.mp-controller-shot figcaption {
  color: #7e8791;
}

.mp-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(58px, 8vw, 100px);
  border-top: 1px solid var(--mp-divider);
  border-bottom: 1px solid var(--mp-divider);
}

.mp-capabilities article {
  min-width: 0;
  padding: 32px 24px 36px;
  border-left: 1px solid var(--mp-divider);
}

.mp-capabilities article:first-child {
  border-left: 0;
  padding-left: 0;
}

.mp-capabilities article:last-child {
  padding-right: 0;
}

.mp-capability__index {
  margin: 0 0 30px;
  color: var(--mp-amber);
  font-size: 0.72rem;
  font-weight: 800;
}

.mp-capabilities h3 {
  margin: 0;
  color: var(--mp-ivory);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.mp-capabilities article > p:last-child {
  margin: 15px 0 0;
  color: var(--mp-secondary);
  font-size: 0.88rem;
  line-height: 1.58;
}

/* Install and download */

.mp-section--install {
  color: var(--mp-ink);
  background: #eaf2f5;
}

.mp-install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(16, 24, 32, 0.2);
  border-bottom: 1px solid rgba(16, 24, 32, 0.2);
  list-style: none;
}

.mp-install-steps li {
  display: grid;
  min-height: 230px;
  padding: 32px 28px;
  grid-template-columns: auto 1fr;
  gap: 23px;
  border-left: 1px solid rgba(16, 24, 32, 0.2);
}

.mp-install-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.mp-install-steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 24, 32, 0.35);
  border-radius: 50%;
  color: #80560e;
  font-size: 0.8rem;
  font-weight: 800;
}

.mp-install-steps h3 {
  margin: 6px 0 0;
  color: var(--mp-ink);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mp-install-steps p {
  margin: 13px 0 0;
  color: var(--mp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mp-download {
  padding: clamp(84px, 10vw, 150px) 0;
  color: var(--mp-ivory);
  background:
    radial-gradient(circle at 18% 42%, rgba(244, 189, 74, 0.09), transparent 28%),
    var(--mp-black);
}

.mp-download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.66fr);
  gap: clamp(58px, 9vw, 132px);
  align-items: center;
}

.mp-download h2 {
  max-width: 760px;
}

.mp-download__copy > p:not(.mp-eyebrow):not(.mp-download__meta) {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--mp-secondary);
  font-size: 1.08rem;
  line-height: 1.6;
}

.mayoprompt-page .mp-button--large {
  min-height: 58px;
  margin-top: 32px;
  padding-inline: 25px;
  font-size: 1rem;
}

.mp-download__meta {
  margin: 16px 0 0;
  color: #7d8690;
  font-size: 0.78rem;
}

.mp-trust-note {
  padding: 33px 0 33px 34px;
  border-left: 2px solid var(--mp-amber);
}

.mp-trust-note__label,
.mp-checksum-label {
  margin: 0;
  color: var(--mp-amber);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mp-trust-note h3 {
  margin: 13px 0 0;
  color: var(--mp-ivory);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.mp-trust-note > p:not(.mp-trust-note__label):not(.mp-checksum-label) {
  margin: 19px 0 0;
  color: var(--mp-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.mp-checksum-label {
  margin-top: 25px;
}

.mp-checksum {
  display: block;
  max-width: 100%;
  margin-top: 9px;
  color: #c4cbd1;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.7rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  user-select: all;
}

.mayoprompt-page #footer {
  background: var(--mp-light);
}

.mayoprompt-page #footer smallstuff {
  color: var(--mp-ink);
}

@keyframes mpHeroReveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: var(--mp-hero-opacity); transform: scale(1); }
}

@keyframes mpHeroCopy {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mpBeatProgress {
  to { transform: scaleX(1); }
}

@media (max-width: 1060px) {
  .mp-hero__copy {
    width: min(700px, 76vw);
  }

  .mp-hero__image {
    object-position: 67% center;
  }

  .mp-hero__veil {
    background:
      linear-gradient(90deg, var(--mp-black) 0%, rgba(7, 9, 12, 0.92) 50%, rgba(7, 9, 12, 0.46) 100%),
      linear-gradient(180deg, rgba(7, 9, 12, 0.26) 0%, transparent 30%, var(--mp-black) 100%);
  }

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

  .mp-capabilities article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .mp-capabilities article:nth-child(n + 3) {
    border-top: 1px solid var(--mp-divider);
  }
}

@media (max-width: 820px) {
  .mp-inner {
    width: min(100% - 32px, var(--mp-max));
  }

  .mp-section-heading--split,
  .mp-mode,
  .mp-download__inner {
    grid-template-columns: 1fr;
  }

  .mp-section-heading--split {
    gap: 24px;
  }

  .mp-hero {
    --mp-hero-opacity: 0.24;
    min-height: 820px;
    padding: 175px 0 184px;
  }

  .mp-hero__image {
    object-position: 57% center;
  }

  .mp-hero__veil {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.91), rgba(7, 9, 12, 0.48)),
      linear-gradient(180deg, rgba(7, 9, 12, 0.22) 0%, rgba(7, 9, 12, 0.62) 58%, var(--mp-black) 100%);
  }

  .mp-breadcrumbs {
    top: -38px;
  }

  .mp-hero__copy {
    width: 100%;
  }

  .mp-proof-row p {
    min-height: 90px;
    padding: 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .mp-beat-demo__topline,
  .mp-beat-demo__transport {
    align-items: stretch;
    flex-direction: column;
  }

  .mp-tempo {
    justify-content: space-between;
  }

  .mp-tempo input {
    flex: 1;
  }

  .mp-beat-status {
    justify-content: space-between;
  }

  .mp-mode {
    gap: 36px;
  }

  .mp-mode--scroll .mp-mode__copy,
  .mp-mode--scroll .mp-mode__visual {
    grid-column: auto;
    grid-row: auto;
  }

  .mp-mode--scroll .mp-mode__copy {
    grid-row: 1;
  }

  .mp-install-steps {
    grid-template-columns: 1fr;
  }

  .mp-install-steps li,
  .mp-install-steps li:first-child {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(16, 24, 32, 0.18);
    border-left: 0;
  }

  .mp-install-steps li:first-child {
    border-top: 0;
  }

  .mp-download__inner {
    gap: 54px;
  }
}

@media (max-width: 580px) {
  .mp-section {
    padding: 72px 0;
  }

  .mp-section-heading {
    margin-bottom: 40px;
  }

  .mp-section-heading h2,
  .mp-download h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .mp-hero {
    min-height: 880px;
    padding-bottom: 238px;
    align-items: flex-start;
  }

  .mp-breadcrumbs {
    font-size: 0.65rem;
  }

  .mp-product-lockup {
    gap: 12px;
  }

  .mp-product-lockup img {
    width: 46px;
    height: 46px;
    border-radius: 11px;
  }

  .mayoprompt-page .mp-hero__title {
    font-size: clamp(3.25rem, 18vw, 4.7rem);
  }

  .mp-actions,
  .mayoprompt-page .mp-button {
    width: 100%;
  }

  .mp-release-line {
    font-size: 0.72rem;
  }

  .mp-proof-row {
    grid-template-columns: 1fr;
  }

  .mp-proof-row p,
  .mp-proof-row p:last-child {
    min-height: 58px;
    padding: 11px 0;
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 243, 234, 0.1);
    border-left: 0;
  }

  .mp-proof-row p:last-child {
    border-bottom: 0;
  }

  .mp-proof-row strong {
    width: 72px;
    font-size: 1.4rem;
  }

  .mp-proof-row span {
    font-size: 0.7rem;
  }

  .mp-beat-demo__topline,
  .mp-beat-demo__transport {
    padding: 16px;
  }

  .mp-tempo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mp-tempo input {
    width: 100%;
  }

  .mp-beat-demo__stage {
    min-height: 300px;
  }

  .mp-focus-word {
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }

  .mp-beat-demo.is-long-word .mp-focus-word {
    font-size: clamp(2.15rem, 9vw, 3.4rem);
  }

  .mp-word-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mp-word-option {
    min-width: 0;
    padding-inline: 8px;
  }

  .mp-word-option span {
    max-width: 100%;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
  }

  .mp-beat-status {
    align-items: stretch;
    flex-direction: column;
  }

  .mp-beat-status p {
    white-space: normal;
  }

  .mp-capabilities {
    grid-template-columns: 1fr;
  }

  .mp-capabilities article,
  .mp-capabilities article:first-child,
  .mp-capabilities article:last-child,
  .mp-capabilities article:nth-child(odd) {
    padding: 27px 0;
    border-top: 1px solid var(--mp-divider);
    border-left: 0;
  }

  .mp-capabilities article:first-child {
    border-top: 0;
  }

  .mp-capability__index {
    margin-bottom: 14px;
  }

  .mp-trust-note {
    padding: 28px 0 0;
    border-top: 2px solid var(--mp-amber);
    border-left: 0;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .mp-hero {
    min-height: 760px;
  }

  .mp-beat-demo__stage {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-skip-link,
  .mayoprompt-page .mp-button,
  .mp-word-option,
  .mp-demo-toggle {
    scroll-behavior: auto;
    transition: none;
  }

  .mp-hero__image,
  .mp-hero__copy,
  .mp-beat-demo.is-running .mp-beat-progress span {
    animation: none;
  }

  .mp-hero__image {
    opacity: var(--mp-hero-opacity);
  }

  .mp-hero__copy {
    opacity: 1;
    transform: none;
  }

  .mp-beat-progress span {
    transform: scaleX(1);
  }
}
