:root {
  --mashy-coral: #e4543d;
  --mashy-cta-coral: #cc402f;
  --mashy-plum: #2e1f35;
  --mashy-cream: #fff7ee;
  --mashy-mint: #cdeadb;
  --mashy-sand: #e5d3bf;
  --mashy-white: #fff;
  --mashy-gutter: clamp(1.25rem, 3vw, 2.25rem);
  --mashy-section-space: clamp(5rem, 9vw, 8rem);
}

html {
  scroll-behavior: smooth;
}

.mashy-page {
  margin: 0;
  background: var(--mashy-cream);
  color: var(--mashy-plum);
  font-family: Inter, "Noto Sans Arabic", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.mashy-page :is(h1, h2, h3, h4, p) {
  margin-top: 0;
}

.mashy-page :is(h1, h2, h3, h4) {
  color: var(--mashy-plum);
}

.mashy-page a {
  color: inherit;
}

.mashy-page :focus-visible {
  outline: 3px solid var(--mashy-coral);
  outline-offset: 3px;
}

.mashy-skip-link {
  position: fixed;
  inset-block-start: -5rem;
  inset-inline-start: 1rem;
  z-index: 100;
  padding: 0.8rem;
  background: var(--mashy-plum);
  color: var(--mashy-white);
}

.mashy-skip-link:focus {
  inset-block-start: 1rem;
}

.mashy-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem max(var(--mashy-gutter), calc((100% - 1200px) / 2));
  background: var(--mashy-cream);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.mashy-nav.is-scrolled {
  background: color-mix(in srgb, var(--mashy-cream) 94%, transparent);
  border-color: var(--mashy-sand);
  backdrop-filter: blur(14px);
}

.mashy-brand {
  display: inline-flex;
  align-items: center;
}

.mashy-brand__logo {
  display: block;
  width: 160px;
  height: auto;
  transition: transform 0.25s ease;
}

.mashy-brand:hover .mashy-brand__logo {
  transform: translateX(3px);
}

.mashy-nav__links,
.mashy-nav__actions,
.mashy-actions {
  display: flex;
  align-items: center;
}

.mashy-nav__links {
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.mashy-nav__links a,
.mashy-nav__actions > a:first-child {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.mashy-nav__links a:hover,
.mashy-nav__actions > a:first-child:hover {
  color: var(--mashy-coral);
}

.mashy-nav__actions {
  gap: 1rem;
}

.mashy-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--mashy-cta-coral);
  color: var(--mashy-white) !important;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mashy-button:hover {
  color: var(--mashy-white);
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem color-mix(in srgb, var(--mashy-plum) 18%, transparent);
}

.mashy-button--small {
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

.mashy-button--plum {
  background: var(--mashy-plum);
}

.mashy-eyebrow {
  color: var(--mashy-cta-coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mashy-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  max-width: 1200px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--mashy-gutter) clamp(5rem, 8vw, 7rem);
}

.mashy-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block-start: 3rem;
  inset-inline-end: -9rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid color-mix(in srgb, var(--mashy-coral) 25%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem color-mix(in srgb, var(--mashy-coral) 8%, transparent),
    0 0 0 9rem color-mix(in srgb, var(--mashy-mint) 42%, transparent);
}

.mashy-hero__copy {
  max-width: 39rem;
}

.mashy-hero h1 {
  max-width: 10ch;
  margin: 0.65rem 0 1.5rem;
  font-size: clamp(3.6rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.mashy-hero__body {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.mashy-zero-promise {
  position: relative;
  max-width: 38rem;
  overflow: hidden;
  margin: 1.8rem 0 0;
  border: 1px solid var(--mashy-sand);
  border-radius: 0.75rem;
  background: var(--mashy-mint);
}

.mashy-zero-promise::before {
  content: "";
  display: block;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--mashy-coral) 0 0.7rem,
    transparent 0.7rem 1.4rem
  );
}

.mashy-zero-promise__total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--mashy-sand);
}

.mashy-zero-promise__lead {
  max-width: 11rem;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mashy-zero-promise__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  white-space: nowrap;
}

.mashy-zero-promise__amount strong {
  color: var(--mashy-coral);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.mashy-zero-promise__amount span {
  font-size: 0.82rem;
  font-weight: 800;
}

.mashy-zero-promise__breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.mashy-zero-promise__breakdown div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
}

.mashy-zero-promise__breakdown div + div {
  border-inline-start: 1px solid var(--mashy-sand);
}

.mashy-zero-promise__breakdown dt {
  order: 2;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mashy-zero-promise__breakdown dd {
  margin: 0;
  color: var(--mashy-coral);
  font-size: 1rem;
  font-weight: 900;
}

.mashy-zero-promise__note {
  margin: 0;
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--mashy-sand);
  background: var(--mashy-cream);
  color: var(--mashy-plum);
  font-size: 0.72rem;
  line-height: 1.4;
}

.mashy-actions {
  gap: 1.25rem;
  margin-top: 2rem;
}

.mashy-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  text-decoration: none;
}

.mashy-text-link span {
  color: var(--mashy-coral);
  transition: transform 0.2s ease;
}

.mashy-text-link:hover span {
  transform: translateY(3px);
}

.mashy-hero__demo {
  position: relative;
}

.mashy-phone {
  position: relative;
  width: 100%;
  max-width: 390px;
  overflow: hidden;
  margin: 0 auto;
  border: 10px solid var(--mashy-plum);
  border-radius: 3rem;
  background: var(--mashy-plum);
  box-shadow:
    1.4rem 1.6rem 0 var(--mashy-sand),
    0 2.5rem 4.5rem color-mix(in srgb, var(--mashy-plum) 24%, transparent);
  animation: mashy-phone-arrive 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mashy-phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  color: var(--mashy-white);
  font-size: 0.76rem;
  font-weight: 800;
}

.mashy-demo-brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.mashy-status {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mashy-white) 14%, transparent);
}

.mashy-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0.35rem;
  background: var(--mashy-sand);
}

.mashy-toggle button {
  min-height: 44px;
  padding: 0.7rem 0.25rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: var(--mashy-plum);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.mashy-toggle .is-active {
  background: var(--mashy-white);
}

.mashy-phone__screen {
  min-height: 430px;
  padding: 1.7rem;
  background: var(--mashy-white);
}

.mashy-phone__eyebrow {
  color: var(--mashy-plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mashy-phone__screen h2 {
  margin: 0.25rem 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.mashy-line,
.mashy-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.mashy-line {
  border-bottom: 1px dotted var(--mashy-sand);
  font-size: 0.86rem;
}

.mashy-total {
  margin: 0.8rem 0 1rem;
  border-bottom: 3px double var(--mashy-sand);
  font-size: 1.05rem;
}

.mashy-phone__primary,
.mashy-phone__secondary,
.mashy-choice,
.mashy-tip-grid button {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem;
  border-radius: 0.75rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mashy-phone__primary {
  border: 0;
  background: var(--mashy-cta-coral);
  color: var(--mashy-white);
}

.mashy-phone__secondary,
.mashy-choice,
.mashy-tip-grid button {
  margin-top: 0.65rem;
  border: 1px solid var(--mashy-sand);
  background: var(--mashy-white);
  color: var(--mashy-plum);
}

.mashy-tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mashy-audience {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  padding: 1.25rem var(--mashy-gutter);
  border-block: 1px solid var(--mashy-sand);
  background: var(--mashy-white);
  font-size: 0.84rem;
}

.mashy-audience span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.mashy-audience i {
  color: var(--mashy-coral);
  font-style: normal;
}

.mashy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--mashy-section-space) var(--mashy-gutter);
}

.mashy-section h2,
.mashy-final-cta h2 {
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.mashy-section-heading {
  max-width: 50rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.mashy-section-heading h2 {
  margin: 0.65rem 0 0;
}

.mashy-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.mashy-outcome__story h2 {
  max-width: 12ch;
  margin: 0.65rem 0 1.6rem;
}

.mashy-outcome__story > p:not(.mashy-eyebrow) {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mashy-compare {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.mashy-compare article {
  padding: 1.35rem 1.5rem;
  border-inline-start: 4px solid var(--mashy-sand);
  background: var(--mashy-white);
}

.mashy-compare article:last-child {
  border-color: var(--mashy-coral);
}

.mashy-compare span {
  color: var(--mashy-plum);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mashy-compare article:last-child span {
  color: var(--mashy-coral);
}

.mashy-compare p {
  margin: 0.35rem 0 0;
  font-weight: 800;
}

.mashy-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mashy-benefit-grid article {
  min-height: 10rem;
  padding: 1.5rem;
  border: 1px solid var(--mashy-sand);
  background: var(--mashy-white);
}

.mashy-benefit-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.mashy-benefit-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.mashy-benefit-grid__feature {
  grid-column: 1 / -1;
  min-height: 16rem !important;
  padding: 2rem !important;
  border: 0 !important;
  background: var(--mashy-plum) !important;
  color: var(--mashy-white);
}

.mashy-benefit-grid__feature .mashy-eyebrow {
  color: var(--mashy-coral);
}

.mashy-benefit-grid__feature h3 {
  margin: 0.5rem 0 0.75rem;
  color: var(--mashy-white);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.mashy-benefit-grid__feature ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.mashy-benefit-grid__feature li::before {
  content: "→";
  margin-inline-end: 0.45rem;
  color: var(--mashy-coral);
}

.mashy-solutions {
  background: var(--mashy-sand);
}

.mashy-solutions .mashy-section-heading {
  max-width: 48rem;
}

.mashy-solutions .mashy-section-heading h2 {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--mashy-plum);
  font-size: clamp(3rem, 4vw, 3.75rem);
  line-height: 1;
}

.mashy-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mashy-solution {
  min-height: 35rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--mashy-sand);
  background: var(--mashy-white);
  text-align: start;
  transition: transform 0.25s ease;
}

.mashy-solution:hover {
  transform: translateY(-5px);
}

.mashy-solution > span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mashy-solution h2 {
  margin: 0.8rem 0;
  color: var(--mashy-plum);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.mashy-solution h3 {
  margin-bottom: 1.4rem;
  color: var(--mashy-coral);
  font-size: 1.2rem;
}

.mashy-solution ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 2.25rem;
  padding: 0;
  list-style: none;
}

.mashy-solution li::before {
  content: "✓";
  margin-inline-end: 0.65rem;
  color: var(--mashy-coral);
  font-weight: 900;
}

.mashy-solution a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--mashy-coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mashy-solution--plum {
  border-color: var(--mashy-plum);
  background: var(--mashy-plum);
  color: var(--mashy-white);
}

.mashy-solution--plum h2,
.mashy-solution--plum p,
.mashy-solution--plum li,
.mashy-solution--plum > span,
.mashy-solution--plum a {
  color: var(--mashy-white);
}

.mashy-solution--plum h3,
.mashy-solution--plum li::before {
  color: var(--mashy-coral);
}

.mashy-section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  text-align: start;
}

.mashy-section-heading--split > div {
  max-width: 42rem;
}

.mashy-section-heading--split > p {
  font-weight: 700;
}

.mashy-how {
  max-width: 1200px;
  background: transparent;
  color: var(--mashy-plum);
  padding-inline: var(--mashy-gutter);
}

.mashy-how .mashy-eyebrow {
  color: var(--mashy-cta-coral);
}

.mashy-how .mashy-section-heading h2 {
  color: var(--mashy-plum);
}

.mashy-how ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mashy-how li {
  min-height: 15rem;
  padding: 1.6rem;
  border: 1px solid var(--mashy-sand);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mashy-how li:hover {
  border-color: var(--mashy-coral);
  transform: translateY(-4px);
}

.mashy-how li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  margin-bottom: 1.6rem;
  border: 1px solid var(--mashy-coral);
  border-radius: 50%;
  color: var(--mashy-coral);
  font-size: 0.7rem;
  font-weight: 900;
}

.mashy-how strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.mashy-how li p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.mashy-integrations {
  border-block: 1px solid var(--mashy-sand);
  background: var(--mashy-white);
  text-align: start;
}

.mashy-integrations .mashy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.mashy-integrations h2 {
  max-width: 11ch;
  margin: 0.65rem 0 1.3rem;
  margin-inline: 0;
  color: var(--mashy-plum);
  font-size: clamp(2.75rem, 4vw, 4rem);
}

.mashy-logo-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mashy-logo-slots span {
  display: grid;
  min-height: 8rem;
  place-items: center;
  padding: 1rem;
  border: 1px dashed var(--mashy-sand);
  border-radius: 0.75rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.mashy-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
}

.mashy-lead__copy h2 {
  max-width: 11ch;
  margin: 0.65rem 0 1.5rem;
}

.mashy-lead__copy > p:not(.mashy-eyebrow) {
  font-size: 1.05rem;
  line-height: 1.7;
}

.mashy-lead__copy aside {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--mashy-sand);
  border-radius: 0.75rem;
  background: var(--mashy-mint);
}

.mashy-lead__copy aside strong {
  color: var(--mashy-coral);
}

.mashy-lead__copy aside span {
  font-size: 0.8rem;
}

.mashy-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--mashy-sand);
  border-radius: 1rem;
  background: var(--mashy-white);
  box-shadow: 0 1.5rem 3rem color-mix(in srgb, var(--mashy-plum) 9%, transparent);
}

.mashy-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mashy-form input,
.mashy-form select,
.mashy-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 2px solid var(--mashy-sand);
  border-radius: 0;
  background: transparent;
  color: var(--mashy-plum);
  font: inherit;
}

.mashy-form textarea {
  resize: vertical;
}

.mashy-form input:focus,
.mashy-form select:focus,
.mashy-form textarea:focus {
  border-color: var(--mashy-coral);
  outline: 0;
}

.mashy-form__wide {
  grid-column: 1 / -1;
}

.mashy-form__wide .mashy-button {
  width: 100%;
}

.mashy-success {
  padding: 3rem;
  border: 1px solid var(--mashy-sand);
  border-radius: 1rem;
  background: var(--mashy-mint);
  text-align: center;
}

.mashy-success > span {
  color: var(--mashy-coral);
  font-size: 3rem;
}

.mashy-faq {
  width: 100%;
  max-width: none;
  background: var(--mashy-plum);
  color: var(--mashy-white);
}

.mashy-faq .mashy-section {
  max-width: 850px;
}

.mashy-faq .mashy-eyebrow {
  color: var(--mashy-coral);
}

.mashy-faq .mashy-section-heading h2 {
  color: var(--mashy-white);
}

.mashy-faq details {
  border-bottom: 1px solid color-mix(in srgb, var(--mashy-white) 18%, transparent);
  padding: 1.4rem 0;
}

.mashy-faq summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.mashy-faq summary::after {
  content: "+";
  color: var(--mashy-coral);
  font-size: 1.5rem;
}

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

.mashy-faq details p {
  max-width: 42rem;
  margin: 0.8rem 0 0;
  color: var(--mashy-white);
}

.mashy-final-cta {
  position: relative;
  isolation: isolate;
  max-width: 1200px;
  overflow: hidden;
  margin: var(--mashy-section-space) auto;
  padding: clamp(3.5rem, 7vw, 6rem) var(--mashy-gutter);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--mashy-coral);
  color: var(--mashy-white);
  text-align: center;
}

.mashy-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline-end: -6rem;
  inset-block-end: -9rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid color-mix(in srgb, var(--mashy-white) 34%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem color-mix(in srgb, var(--mashy-plum) 8%, transparent),
    0 0 0 9rem color-mix(in srgb, var(--mashy-mint) 12%, transparent);
}

.mashy-final-cta .mashy-eyebrow {
  color: var(--mashy-white);
}

.mashy-final-cta h2 {
  max-width: 12ch;
  margin: 0.7rem auto 1.3rem;
  color: var(--mashy-white);
}

.mashy-final-cta > p:not(.mashy-eyebrow) {
  margin-bottom: 1.75rem;
}

.mashy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem max(var(--mashy-gutter), calc((100% - 1200px) / 2));
  background: var(--mashy-plum);
  color: var(--mashy-white);
}

.mashy-footer__brand,
.mashy-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mashy-footer__brand span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mashy-footer__logo {
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
}

.mashy-footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.mashy-footer__links a:hover {
  color: var(--mashy-coral);
}

.mashy-footer > span {
  font-size: 0.75rem;
}

.mashy-mobile-cta {
  display: none;
}

.mashy-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes mashy-phone-arrive {
  from {
    opacity: 0;
    transform: translateY(1.5rem) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 920px) {
  .mashy-nav__links {
    display: none;
  }

  .mashy-hero,
  .mashy-outcome,
  .mashy-integrations .mashy-section,
  .mashy-lead {
    grid-template-columns: 1fr;
  }

  .mashy-hero__copy {
    max-width: 42rem;
    margin: 0 auto;
  }

  .mashy-section-heading--split {
    display: block;
  }

  .mashy-how ol {
    grid-template-columns: 1fr 1fr;
  }

  .mashy-logo-slots {
    max-width: 44rem;
  }

  .mashy-footer {
    flex-wrap: wrap;
  }

  .mashy-footer__links {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .mashy-page {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
  }

  .mashy-nav {
    min-height: 4.75rem;
    padding: 0.75rem var(--mashy-gutter);
  }

  .mashy-brand__logo {
    width: 132px;
  }

  .mashy-nav__actions {
    gap: 0.35rem;
  }

  .mashy-nav__actions > a:first-child {
    min-width: 44px;
    justify-content: center;
    font-size: 0.72rem;
  }

  .mashy-nav .mashy-button {
    padding: 0.65rem 0.75rem;
    font-size: 0.72rem;
  }

  .mashy-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.25rem;
    padding-block: 2.75rem 4.75rem;
  }

  .mashy-hero::before {
    inset-inline-end: -20rem;
  }

  .mashy-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4rem);
  }

  .mashy-zero-promise__total {
    display: block;
  }

  .mashy-zero-promise__lead {
    max-width: none;
    margin-bottom: 0.8rem;
  }

  .mashy-zero-promise__amount strong {
    font-size: clamp(3.4rem, 17vw, 4.5rem);
  }

  .mashy-zero-promise__breakdown div {
    padding: 0.75rem 0.55rem;
  }

  .mashy-zero-promise__breakdown dt {
    font-size: 0.57rem;
  }

  .mashy-zero-promise__breakdown dd {
    font-size: 0.82rem;
  }

  .mashy-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mashy-actions > * {
    width: 100%;
    justify-content: center;
  }

  .mashy-phone {
    max-width: 360px;
    border-width: 8px;
    border-radius: 2.5rem;
    box-shadow:
      0.8rem 1rem 0 var(--mashy-sand),
      0 2rem 3rem color-mix(in srgb, var(--mashy-plum) 18%, transparent);
  }

  .mashy-audience {
    justify-content: flex-start;
  }

  .mashy-audience strong {
    width: 100%;
  }

  .mashy-benefit-grid,
  .mashy-solution-grid,
  .mashy-how ol,
  .mashy-logo-slots,
  .mashy-form {
    grid-template-columns: 1fr;
  }

  .mashy-benefit-grid__feature,
  .mashy-form__wide {
    grid-column: auto;
  }

  .mashy-solution {
    min-height: 0;
  }

  .mashy-how li {
    min-height: 0;
  }

  .mashy-final-cta {
    margin: 4.5rem var(--mashy-gutter);
    padding: 3.5rem 1.5rem;
  }

  .mashy-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 5rem;
  }

  .mashy-footer__links {
    flex-wrap: wrap;
  }

  .mashy-mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    display: block;
    padding: 1rem var(--mashy-gutter) calc(1rem + env(safe-area-inset-bottom));
    background: var(--mashy-cta-coral);
    color: var(--mashy-white) !important;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }
}

[dir="rtl"] .mashy-brand:hover .mashy-brand__logo {
  transform: translateX(-3px);
}

[dir="rtl"] .mashy-zero-promise__amount,
[dir="rtl"] .mashy-line,
[dir="rtl"] .mashy-total {
  direction: rtl;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mashy-page *,
  .mashy-page *::before,
  .mashy-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
