@font-face {
  font-family: "Cairo";
  src: url("/assets/Cairo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("/assets/Cairo-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --ink: #082f33;
  --ink-deep: #052327;
  --teal: #176c70;
  --lime: #b8e34a;
  --lime-dark: #91b72d;
  --paper: #f7f4ea;
  --surface: #fffdf7;
  --muted: #6f7f7d;
  --line: rgba(8, 47, 51, 0.13);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(8, 47, 51, 0.14);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  right: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(247, 244, 234, 0.92);
  box-shadow: 0 8px 28px rgba(8, 47, 51, 0.07);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(8, 47, 51, 0.18);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand b {
  font-size: 1.08rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.main-nav a {
  position: relative;
  color: #345153;
  font-size: 0.86rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime-dark);
  transition: left 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  left: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 32px rgba(8, 47, 51, 0.18);
}

.button-primary:hover {
  background: var(--teal);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 14px;
  font-size: 0.8rem;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  padding: 160px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(8, 47, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 51, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: -190px;
  right: -120px;
  background: rgba(184, 227, 74, 0.28);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  bottom: -200px;
  left: -100px;
  background: rgba(23, 108, 112, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 74px;
}

.hero-copy,
.hero-visual,
.feature,
.download-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.eyebrow i {
  width: 22px;
  height: 2px;
  background: var(--lime-dark);
}

.hero h1 {
  max-width: 650px;
  margin: 18px 0 22px;
  font-size: clamp(3.4rem, 6.4vw, 6.5rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  color: var(--teal);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -1%;
  bottom: 4px;
  width: 102%;
  height: 14px;
  border-radius: 20px;
  background: var(--lime);
  opacity: 0.65;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #56706f;
  font-size: 1.04rem;
  line-height: 2;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 44px;
}

.hero-proof div {
  display: grid;
  gap: 1px;
  padding-inline: 24px;
  border-inline-start: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-right: 0;
  border: 0;
}

.hero-proof b {
  font-size: 0.88rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.food-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.food-card-main {
  width: 78%;
  height: 450px;
  top: 34px;
  left: 0;
  transform: rotate(-4deg);
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(8, 47, 51, 0.9);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.phone-frame {
  position: absolute;
  z-index: 3;
  width: 190px;
  height: 408px;
  right: 2%;
  bottom: 0;
  overflow: hidden;
  padding: 7px;
  border: 5px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 34px 75px rgba(8, 47, 51, 0.28);
  transform: rotate(3deg);
}

.phone-frame > img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 62px;
  height: 16px;
  border-radius: 0 0 12px 12px;
  background: var(--ink);
  transform: translateX(-50%);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(8, 47, 51, 0.14);
  backdrop-filter: blur(12px);
}

.floating-note b,
.floating-note small {
  display: block;
}

.floating-note b {
  font-size: 0.75rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.6rem;
}

.floating-note-rating {
  top: 5px;
  right: 19%;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--lime);
  color: var(--ink);
}

.floating-note-order {
  bottom: 46px;
  left: -10px;
}

.pulse-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #16a76e;
  box-shadow: 0 0 0 7px rgba(22, 167, 110, 0.12);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 23px;
  border-inline-start: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-grid p:first-child {
  border: 0;
}

.trust-grid span {
  color: var(--lime-dark);
  font-size: 0.66rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading h2,
.how h2,
.download h2 {
  margin: 13px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.feature {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.feature h3 {
  margin: 14px 0 12px;
  font-size: 1.75rem;
  line-height: 1.4;
}

.feature p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-wide {
  min-height: 440px;
}

.feature-wide .feature-copy {
  position: relative;
  z-index: 2;
  width: 48%;
}

.feature-wide > img {
  position: absolute;
  inset: 0 48% 0 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
}

.feature-wide::after {
  content: "";
  position: absolute;
  inset: 0 42% 0 30%;
  background: linear-gradient(90deg, transparent, var(--surface));
}

.feature a {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-dark {
  background: var(--ink);
  color: white;
}

.feature-dark p {
  color: #bdcfcc;
}

.mini-checkout {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  padding: 20px;
  border: 1px solid var(--white-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-checkout span {
  color: #bdcfcc;
  font-size: 0.68rem;
}

.mini-checkout b {
  font-size: 0.75rem;
}

.mini-checkout i {
  grid-column: 1 / -1;
  height: 1px;
  margin: 12px 0;
  background: var(--white-line);
}

.mini-checkout button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.feature-image {
  min-height: 360px;
  padding: 0;
}

.feature-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.feature-image > div {
  padding: 25px 30px 30px;
}

.feature-image h3 {
  display: inline;
  margin-right: 10px;
}

.how {
  background: var(--ink);
  color: white;
}

.how-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.eyebrow-light {
  color: var(--lime);
}

.how-intro > p {
  max-width: 390px;
  color: #bdd0cd;
}

.how-intro .button {
  margin-top: 25px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--white-line);
}

.steps li:last-child {
  border-bottom: 0;
}

.steps > li > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: #aebfbd;
  font-size: 0.82rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(184, 227, 74, 0.3), transparent 34%),
    var(--surface);
}

.partner-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 80% 10%, rgba(23, 108, 112, 0.18), transparent 36%),
    var(--surface);
}

.partner-grid article:nth-child(3) {
  background: var(--ink);
  color: white;
}

.partner-label {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
}

.partner-grid h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.partner-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.partner-grid article:nth-child(3) p {
  color: #b9c9c7;
}

.download {
  padding-top: 30px;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: center;
  gap: 60px;
  min-height: 520px;
  padding: 70px;
  border-radius: 42px;
  background: var(--teal);
  color: white;
}

.download-card::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  left: -180px;
  border-radius: 50%;
  background: rgba(184, 227, 74, 0.22);
}

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

.download-copy > p {
  max-width: 560px;
  color: #d7e4e2;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.store-button {
  min-width: 172px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: var(--ink-deep);
  color: white;
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  background: #0b3b40;
}

.store-button > span:last-child {
  display: grid;
  line-height: 1.35;
}

.store-button small {
  color: #aebfbd;
  font-size: 0.58rem;
}

.store-button b {
  font-size: 0.88rem;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 21px solid var(--lime);
}

.apple-mark {
  position: relative;
  width: 25px;
  height: 29px;
  font-size: 0;
}

.apple-mark::before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 0;
  width: 20px;
  height: 23px;
  border-radius: 48% 48% 45% 45%;
  background: white;
}

.apple-mark::after {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  width: 9px;
  height: 6px;
  border-radius: 100% 0;
  background: var(--lime);
  transform: rotate(-28deg);
}

.store-button-web {
  background: transparent;
}

.web-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font: 700 0.48rem/1 sans-serif;
}

.download-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.download-mark img {
  width: min(290px, 80%);
  aspect-ratio: 1;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 30%;
  object-fit: cover;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}

.download-mark span {
  margin-top: 18px;
  color: var(--lime);
  font-size: 1.1rem;
  font-weight: 900;
}

.site-footer {
  margin-top: 120px;
  padding-top: 70px;
  background: var(--ink-deep);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 55px;
  padding-bottom: 60px;
}

.brand-light small {
  color: #9cb2af;
}

.footer-brand p {
  color: #9cb2af;
  font-size: 0.8rem;
}

.footer-top h3 {
  margin: 4px 0 17px;
  color: var(--lime);
  font-size: 0.8rem;
}

.footer-top > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-top a,
.footer-top span {
  color: #b9c9c7;
  font-size: 0.74rem;
}

.footer-top a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--white-line);
  color: #8fa6a3;
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.support-fab {
  position: fixed;
  z-index: 90;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 20px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 38px rgba(8, 47, 51, 0.28);
}

.support-fab b {
  font-size: 0.72rem;
}

.support-icon {
  position: relative;
  width: 27px;
  height: 27px;
  border: 2px solid var(--lime);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.support-icon::before,
.support-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 5px;
  height: 9px;
  border-radius: 4px;
  background: var(--lime);
}

.support-icon::before {
  right: -3px;
}

.support-icon::after {
  left: -3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
  }

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

  .hero-grid {
    gap: 36px;
  }

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

  .hero-copy > p,
  .hero h1 {
    margin-inline: auto;
  }

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

  .hero-visual {
    width: min(690px, 100%);
    margin-inline: auto;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border: 0;
  }

  .menu-button {
    display: block;
    margin-right: auto;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-order {
    display: none;
  }

  .section-heading {
    display: grid;
    gap: 22px;
  }

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

  .how-wrap {
    gap: 50px;
  }

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

  .partner-grid article {
    min-height: 240px;
  }

  .download-card {
    grid-template-columns: 1fr;
    padding: 55px;
    text-align: center;
  }

  .download-copy > p {
    margin-inline: auto;
  }

  .store-links {
    justify-content: center;
  }

  .download-mark img {
    width: 220px;
  }

  .footer-top {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .hero {
    padding: 112px 0 58px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-copy > p {
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-proof div {
    padding-inline: 11px;
  }

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

  .food-card-main {
    width: 88%;
    height: 330px;
  }

  .phone-frame {
    width: 140px;
    height: 300px;
    right: 0;
    border-width: 4px;
    border-radius: 28px;
  }

  .floating-note-rating {
    right: auto;
    left: 2px;
  }

  .floating-note-order {
    bottom: 14px;
    left: 18%;
  }

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

  .trust-grid p {
    padding: 16px 8px;
    font-size: 0.67rem;
  }

  .trust-grid p:nth-child(3) {
    border: 0;
    border-top: 1px solid var(--line);
  }

  .trust-grid p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .how h2,
  .download h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .feature {
    min-height: 380px;
    padding: 26px;
    border-radius: 25px;
  }

  .feature-wide {
    min-height: 520px;
  }

  .feature-wide .feature-copy {
    width: 100%;
  }

  .feature-wide > img {
    inset: auto 0 0;
    width: 100%;
    height: 230px;
  }

  .feature-wide::after {
    inset: 45% 0 auto;
    height: 22%;
    background: linear-gradient(transparent, var(--surface));
  }

  .feature-dark {
    min-height: 430px;
  }

  .mini-checkout {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

  .how-wrap {
    gap: 32px;
  }

  .steps li {
    grid-template-columns: 55px 1fr;
    gap: 15px;
  }

  .steps > li > span {
    width: 50px;
    height: 50px;
  }

  .download {
    padding-inline: 0;
  }

  .download-card {
    width: calc(100% - 20px);
    min-height: auto;
    padding: 48px 22px;
    border-radius: 30px;
  }

  .store-links {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
  }

  .support-fab {
    width: 52px;
    justify-content: center;
    padding: 8px;
    border-radius: 17px;
  }

  .support-fab b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

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