:root {
  --page-width: max(1728px, 100vw);
  --page-height: 9300px;
  --page-scale: 1;
  --sf-font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --inter-font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
}

body {
  font-family: var(--sf-font);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.landing-stage {
  position: relative;
  width: 100%;
  min-height: calc(var(--page-height) * var(--page-scale));
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.landing-artboard {
  position: relative;
  width: calc(var(--page-width) * var(--page-scale));
  height: calc(var(--page-height) * var(--page-scale));
  flex: 0 0 auto;
}

.landing-page {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--page-width);
  height: var(--page-height);
  transform: none;
  transform-origin: top left;
  background: #ffffff;
  overflow: hidden;
}

html.is-scaled .landing-page {
  transform: scale(var(--page-scale));
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 1320px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 34px;
  overflow: hidden;
  z-index: 8;
}

.site-nav--animated {
  position: fixed;
}

.site-nav__fill,
.site-nav__overlay {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}

.site-nav__fill {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.34), rgba(255, 246, 227, 0.16)),
    linear-gradient(0deg, rgba(245, 245, 245, 0.38), rgba(245, 245, 245, 0.38)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.site-nav__overlay {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.92), transparent 16%),
    radial-gradient(circle at 84% 0%, rgba(255, 250, 236, 0.42), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 223, 0.14)),
    rgba(0, 0, 0, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.site-nav__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px 0 22px;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-nav__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 14px;
}

.site-nav__brand-text {
  font-family: var(--inter-font);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1a15;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 22px;
}

.site-nav__menu-link {
  font-family: var(--inter-font);
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(29, 26, 21, 0.78);
  text-decoration: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1f170c;
  background:
    linear-gradient(180deg, rgba(255, 242, 201, 0.96), rgba(240, 206, 110, 0.96)),
    rgba(255, 219, 114, 0.9);
  box-shadow:
    0 14px 28px rgba(209, 165, 33, 0.16),
    inset 0 1px 0 rgba(255, 247, 224, 0.74);
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 226, 0.3)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 28px rgba(143, 107, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #2a2112;
  cursor: pointer;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav__collapsed-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.84);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.site-nav__collapsed-logo {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 9px;
}

@media (min-width: 769px) {
  .site-nav--animated {
    position: fixed;
    top: 24px;
    width: 1320px;
    transition:
      width 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      height 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-radius 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms ease,
      box-shadow 220ms ease;
    cursor: default;
  }

  .site-nav--animated .site-nav__content {
    transition: padding 260ms ease;
  }

  .site-nav--animated .site-nav__brand,
  .site-nav--animated .site-nav__menu,
  .site-nav--animated .site-nav__link {
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }

  .site-nav--animated.is-collapsed {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  }

  .site-nav--animated.is-collapsed .site-nav__fill,
  .site-nav--animated.is-collapsed .site-nav__overlay {
    border-radius: 999px;
  }

  .site-nav--animated.is-collapsed .site-nav__content {
    padding: 0;
  }

  .site-nav--animated.is-collapsed .site-nav__brand,
  .site-nav--animated.is-collapsed .site-nav__menu,
  .site-nav--animated.is-collapsed .site-nav__link {
    opacity: 0;
    transform: translateX(-20px) scale(0.96);
    pointer-events: none;
  }

  .site-nav--animated.is-collapsed .site-nav__collapsed-icon {
    opacity: 1;
    transform: scale(1);
  }
}

.bg-gradient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  will-change: transform, opacity;
}

.bg-gradient-two {
  width: 640px;
  height: 840px;
  left: calc(50% - 1034px);
  top: 1480px;
  background: #ffcd4a;
  filter: blur(200px);
  animation: blob-pulse-left 6.8s ease-in-out infinite;
}

.bg-gradient-one {
  width: 960px;
  height: 960px;
  left: calc(50% + 236px);
  top: 760px;
  background: linear-gradient(180deg, #ffe0a8 0%, #fff8c4 100%);
  filter: blur(200px);
  animation: blob-pulse-right 8.2s ease-in-out infinite;
}

.bg-gradient-feature-left {
  width: 700px;
  height: 880px;
  left: calc(50% + 116px);
  top: 3440px;
  background: #ffe27d;
  filter: blur(200px);
  animation: blob-pulse-left 7.1s ease-in-out infinite;
}

.bg-gradient-feature-right {
  width: 760px;
  height: 760px;
  left: calc(50% - 984px);
  top: 4700px;
  background: linear-gradient(180deg, #ffd88d 0%, #fff2ab 100%);
  filter: blur(200px);
  animation: blob-pulse-right 8.6s ease-in-out infinite;
}

@keyframes blob-pulse-left {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate3d(30px, -22px, 0) scale(1.07);
    opacity: 0.86;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blob-pulse-right {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate3d(-26px, 18px, 0) scale(1.06);
    opacity: 0.88;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

.hero {
  position: absolute;
  width: 1579px;
  height: 3258px;
  left: calc(50% - 789.5px);
  top: -72px;
}

.hero-panel {
  position: absolute;
  width: 1569px;
  height: 754px;
  left: 50%;
  top: 222px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(237, 229, 195, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  overflow: hidden;
}

.hero-title {
  position: absolute;
  width: 980px;
  height: 147px;
  left: 39px;
  top: 190px;
  margin: 0;
  font-family: var(--sf-font);
  font-style: normal;
  font-weight: 700;
  font-size: 88px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #000000;
  z-index: 3;
}

.hero-title__text {
  position: relative;
  display: inline-block;
}

.hero-trust {
  position: absolute;
  left: 39px;
  top: 372px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 16px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 226, 0.64)),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 16px 36px rgba(126, 93, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.hero-trust__avatars {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.hero-trust__avatar {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.hero-trust__avatar + .hero-trust__avatar {
  margin-left: -7px;
}

.hero-trust__text {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.66);
  white-space: nowrap;
}

.hero-trust__text strong {
  font-weight: 700;
  color: #111111;
}

.hero-draw {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0.08em 0 0.02em;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

.hero-draw .text-draw__p {
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.hero-draw .text-draw__box {
  position: relative;
  width: 100%;
  height: 0.18em;
  margin-top: -0.02em;
  color: #e0b847;
  pointer-events: none;
}

.hero-draw .text-draw__box-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.hero-title__focus {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  min-width: 0;
}

.hero-title__focus.is-arabic {
  direction: rtl;
  unicode-bidi: isolate;
  letter-spacing: 0;
  text-align: left;
}

.hero-title__focus::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 0.08em;
  width: 0.06em;
  height: 0.82em;
  background: currentColor;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
}

body.page-entered .hero-title__focus::after {
  opacity: 1;
  animation: hero-caret-blink 0.9s steps(1, end) infinite;
}

@keyframes hero-caret-blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body.page-entered .hero-title__focus {
  animation: none;
}

.mosque-landing {
  position: absolute;
  width: 1579px;
  height: 487px;
  left: -4px;
  top: 270px;
  filter: blur(2px);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  z-index: 0;
}

.mosque-landing__image {
  position: absolute;
  left: 0.28%;
  right: 0.45%;
  top: 0%;
  bottom: 0.67%;
  width: 99.27%;
  height: 99.33%;
  object-fit: cover;
  object-position: top center;
}

.hero-download {
  position: absolute;
  left: 39px;
  top: 522px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 560px;
}

.hero-download__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.hero-download__link:hover {
  transform: translateY(-2px);
  filter: saturate(1.02);
}

.hero-download__badge {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
}

.hero-download__badge--google,
.hero-download__badge--apple {
  height: 62px;
}

.mockup {
  position: absolute;
}

.mockup-spline {
  width: 560px;
  height: 960px;
  left: 1270px;
  top: 292px;
}

.mockup-spline__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 44px 44px 132px 44px;
}

.mockup-spline__frame {
  position: absolute;
  top: 0;
  left: -520px;
  width: calc(100% + 520px);
  height: calc(100% + 92px);
  border: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 18%, #000 100%),
    linear-gradient(to left, transparent 0%, #000 10%, #000 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 100%),
    linear-gradient(to top, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.28) 24%, rgba(0, 0, 0, 0.72) 42%, #000 58%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 18%, #000 100%),
    linear-gradient(to left, transparent 0%, #000 10%, #000 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 100%),
    linear-gradient(to top, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.28) 24%, rgba(0, 0, 0, 0.72) 42%, #000 58%, #000 100%);
  mask-composite: intersect;
}

.hero-stat {
  position: absolute;
  width: 734px;
  height: 425px;
  left: 864px;
  top: 1571px;
  margin: 0;
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 100px;
  text-align: right;
  color: rgba(0, 0, 0, 0.2);
}

.hero-stat__text {
  --stat-highlight-size: 16%;
  display: inline;
  color: transparent;
  background-image: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.18) 28%,
    rgba(0, 0, 0, 0.95) 52%,
    rgba(0, 0, 0, 0.98) 68%,
    rgba(0, 0, 0, 0.18) 100%
  );
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: var(--stat-highlight-size) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  will-change: background-size;
}

.intro-block {
  position: absolute;
  left: calc(50% - 806px);
  top: 2248px;
  width: 760px;
  z-index: 1;
}

.intro-block__eyebrow {
  margin: 0 0 18px;
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.intro-title {
  margin: 0 0 22px;
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-align: left;
  color: #000000;
  max-width: 10ch;
}

.intro-block__intro {
  margin: 0;
  max-width: 700px;
  font-family: var(--inter-font);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
}

.solution-panel {
  position: absolute;
  width: 1569px;
  height: 983px;
  left: 50%;
  top: 2528px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(237, 229, 195, 0.2) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  overflow: hidden;
}

.solution-silhouette {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 820px;
  height: 980px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
}

.solution-silhouette__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  object-fit: contain;
  object-position: left bottom;
}

.solution-text {
  position: absolute;
  width: 929px;
  height: 300px;
  left: 58px;
  top: 317px;
  margin: 0;
  z-index: 1;
  font-family: var(--inter-font);
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 100px;
  color: #000000;
}

.solution-text__content {
  position: relative;
  display: inline-block;
  color: #000000;
}

.solution-draw {
  position: relative;
  display: inline-block;
  margin: 0 0.06em;
  vertical-align: baseline;
  padding-bottom: 0.16em;
  z-index: 1;
}

.solution-draw .text-draw__p {
  display: inline;
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.solution-draw .text-draw__box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.01em;
  width: 100%;
  height: 0.12em;
  color: #d6aa3a;
  pointer-events: none;
}

.solution-draw .text-draw__box-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.solution-mockup {
  position: absolute;
  width: 871px;
  height: 983px;
  left: 840px;
  top: 0;
  z-index: 1;
}

.solution-mockup__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

.scan-section {
  position: absolute;
  left: 50%;
  top: 3670px;
  width: 1569px;
  min-height: 920px;
  transform: translateX(-50%);
}

.scan-section__bg {
  position: absolute;
  left: 50%;
  top: -220px;
  width: 2200px;
  height: 1320px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 212, 98, 0.34), transparent 18%),
    radial-gradient(circle at 34% 72%, rgba(255, 236, 175, 0.24), transparent 20%),
    radial-gradient(circle at 74% 42%, rgba(255, 229, 138, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 230, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  filter: blur(10px);
  opacity: 0.98;
  animation: scan-section-bg 11s ease-in-out infinite;
  pointer-events: none;
}

.scan-section__media {
  position: absolute;
  left: -12px;
  top: 48px;
  width: 860px;
  height: 900px;
  z-index: 1;
}

.scan-section__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px;
  display: block;
  transform: rotate(-4deg);
  transform-origin: center center;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
}

.scan-section__mobile-image {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.scan-section__copy {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 760px;
  z-index: 1;
  transform: translateY(-50%);
}

.feature-ui-row {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.feature-ui-row--right {
  justify-content: flex-start;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--inter-font);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #3c2f10;
  background: rgba(255, 236, 175, 0.72);
  box-shadow:
    0 10px 30px rgba(255, 214, 83, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature-chip--soft {
  background: rgba(255, 255, 255, 0.72);
  color: rgba(40, 31, 11, 0.82);
}

.scan-section__title {
  margin: 0 0 2.6rem;
  font-family: var(--sf-font);
  font-size: 70px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #000000;
  max-width: 10ch;
  text-wrap: balance;
}

.scan-section__list {
  margin: 0 0 2.35rem;
  padding-left: 1.5rem;
  font-family: var(--inter-font);
  font-size: 1.75rem;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.78);
}

.scan-section__list li + li {
  margin-top: 1rem;
}

.recite-section {
  position: absolute;
  left: 50%;
  top: 4780px;
  width: 1569px;
  min-height: 920px;
  transform: translateX(-50%);
}

.recite-section__bg {
  position: absolute;
  left: 50%;
  top: -220px;
  width: 2200px;
  height: 1320px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 212, 98, 0.34), transparent 18%),
    radial-gradient(circle at 72% 72%, rgba(255, 236, 175, 0.26), transparent 18%),
    radial-gradient(circle at 30% 46%, rgba(255, 229, 138, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 230, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  filter: blur(10px);
  opacity: 0.98;
  animation: recite-section-bg 11.5s ease-in-out infinite;
  pointer-events: none;
}

.recite-section__copy {
  position: absolute;
  left: 48px;
  top: 50%;
  width: 670px;
  z-index: 1;
  transform: translateY(-50%);
}

.recite-section__title {
  margin: 0 0 2.5rem;
  font-family: var(--sf-font);
  font-size: 70px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #000000;
  max-width: 12ch;
  text-wrap: balance;
}

.recite-section__list {
  margin: 0 0 2.4rem;
  padding-left: 1.5rem;
  font-family: var(--inter-font);
  font-size: 1.75rem;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.78);
}

.recite-section__list li + li {
  margin-top: 1rem;
}

.recite-section__description {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 1.5rem;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
}

.recite-section__media {
  position: absolute;
  right: -12px;
  top: 20px;
  width: 860px;
  height: 900px;
  z-index: 1;
}

.recite-section__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px;
  display: block;
  transform: rotate(4deg);
  transform-origin: center center;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.12));
}

.recite-section__mobile-image {
  display: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonials-section {
  position: absolute;
  left: 50%;
  top: 5900px;
  width: 1569px;
  transform: translateX(-50%);
}

.testimonials-section__bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(180px);
  opacity: 0.92;
}

.testimonials-section__bg--left {
  width: 540px;
  height: 700px;
  left: -110px;
  top: 120px;
  background: linear-gradient(180deg, rgba(255, 213, 117, 0.72) 0%, rgba(255, 245, 174, 0.4) 100%);
}

.testimonials-section__bg--right {
  width: 620px;
  height: 780px;
  right: -120px;
  top: -20px;
  background: rgba(255, 202, 72, 0.54);
}

.testimonials-section__header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 0 26px 52px;
}

.testimonials-section__eyebrow {
  margin: 0 0 18px;
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.testimonials-section__title {
  margin: 0 0 18px;
  font-family: var(--inter-font);
  font-size: 62px;
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #000000;
  max-width: 11ch;
}

.testimonials-section__intro {
  margin: 0;
  max-width: 720px;
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.72);
}

.testimonials-section__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 38px;
  overflow: hidden;
}

.testimonials-section__fill,
.testimonials-section__overlay {
  position: absolute;
  inset: 0;
  border-radius: 38px;
}

.testimonials-section__fill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 245, 224, 0.18)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.testimonials-section__overlay {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 86% 0%, rgba(255, 248, 226, 0.48), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 245, 223, 0.14)),
    rgba(0, 0, 0, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
}

.testimonials-section__stage {
  position: relative;
  z-index: 1;
  height: 900px;
  padding: 34px;
  overflow: hidden;
}

.testimonials-section__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  transform:
    translateX(-42px)
    translateY(-10px)
    translateZ(-100px)
    rotateX(20deg)
    rotateY(-10deg)
    rotateZ(16deg);
  transform-style: preserve-3d;
}

.testimonials-section__column {
  position: relative;
  min-height: 100%;
}

.testimonials-section__track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: testimonials-marquee-vertical 34s linear infinite;
  will-change: transform;
}

.testimonials-section__column--reverse .testimonials-section__track {
  animation-direction: reverse;
}

.testimonials-section__column:hover .testimonials-section__track {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 0;
  padding: 18px 18px 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 238, 0.82)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(231, 217, 181, 0.76);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.testimonial-card__person {
  display: block;
}

.testimonial-card__identity {
  min-width: 0;
}

.testimonial-card__name,
.testimonial-card__meta,
.testimonial-card__quote {
  margin: 0;
  font-family: var(--inter-font);
}

.testimonial-card__name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: #121212;
}

.testimonial-card__name span {
  font-size: 14px;
}

.testimonial-card__meta {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.48);
}

.testimonial-card__quote {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.58;
  color: rgba(17, 17, 17, 0.82);
}

.testimonials-section__fade {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.testimonials-section__fade--top,
.testimonials-section__fade--bottom {
  left: 0;
  right: 0;
  height: 22%;
}

.testimonials-section__fade--top {
  top: 0;
  background: linear-gradient(180deg, #fffdf8 12%, rgba(255, 253, 248, 0) 100%);
}

.testimonials-section__fade--bottom {
  bottom: 0;
  background: linear-gradient(0deg, #fffaf0 10%, rgba(255, 250, 240, 0) 100%);
}

.testimonials-section__fade--left,
.testimonials-section__fade--right {
  top: 0;
  bottom: 0;
  width: 17%;
}

.testimonials-section__fade--left {
  left: 0;
  background: linear-gradient(90deg, #fffdf8 8%, rgba(255, 253, 248, 0) 100%);
}

.testimonials-section__fade--right {
  right: 0;
  background: linear-gradient(270deg, #fffdf8 8%, rgba(255, 253, 248, 0) 100%);
}

.faq-section {
  position: absolute;
  left: 50%;
  top: 7260px;
  width: 1569px;
  transform: translateX(-50%);
}

.faq-section__bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(190px);
  opacity: 0.92;
}

.faq-section__bg--left {
  width: 520px;
  height: 680px;
  left: 1040px;
  top: 180px;
  background: rgba(255, 216, 116, 0.88);
}

.faq-section__bg--right {
  width: 720px;
  height: 720px;
  left: -120px;
  top: 40px;
  background: linear-gradient(180deg, rgba(255, 207, 124, 0.82) 0%, rgba(255, 245, 174, 0.82) 100%);
}

.faq-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
}

.faq-shell__fill,
.faq-shell__overlay {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}

.faq-shell__fill {
  background:
    linear-gradient(0deg, rgba(245, 245, 245, 0.46), rgba(245, 245, 245, 0.46)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.faq-shell__overlay {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.38), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.12)),
    rgba(0, 0, 0, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.faq-shell__content {
  position: relative;
  z-index: 1;
  padding: 28px 30px 30px;
}

.faq-section__header {
  max-width: 760px;
  margin-bottom: 22px;
}

.faq-section__eyebrow {
  margin: 0 0 18px;
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.faq-section__title {
  margin: 0 0 16px;
  font-family: var(--inter-font);
  font-size: 64px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #000000;
  max-width: 11ch;
}

.faq-section__intro {
  margin: 0;
  max-width: 680px;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(73, 58, 25, 0.08);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 6px;
  list-style: none;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  font-family: var(--inter-font);
  font-size: 25px;
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #111111;
  max-width: 32ch;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: rgba(25, 25, 25, 0.72);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-item__body {
  padding: 0 6px 14px;
}

.faq-item__answer {
  margin: 0;
  max-width: 1040px;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.78);
}

.waitlist-section {
  position: absolute;
  left: 50%;
  top: 8600px;
  width: 1569px;
  min-height: 760px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.waitlist-section__bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(180px);
  opacity: 0.94;
}

.waitlist-section__bg--left {
  width: 720px;
  height: 860px;
  left: -120px;
  top: 10px;
  background: rgba(255, 198, 39, 0.88);
}

.waitlist-section__bg--right {
  width: 920px;
  height: 920px;
  right: -140px;
  top: -100px;
  background: linear-gradient(180deg, rgba(255, 214, 128, 0.9) 0%, rgba(253, 255, 186, 0.84) 100%);
}

.waitlist-section__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.waitlist-section__title {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 64px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #000000;
  text-align: center;
  text-shadow:
    0 0 16px rgba(255, 233, 169, 0.5),
    0 0 36px rgba(255, 219, 108, 0.22);
  filter: saturate(1.02);
}

.waitlist-panel {
  position: relative;
  z-index: 1;
  width: 860px;
  min-height: 0;
  border-radius: 30px;
  overflow: visible;
}

.waitlist-panel__fill,
.waitlist-panel__overlay {
  position: absolute;
  inset: 0;
  border-radius: 30px;
}

.waitlist-panel__fill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.12)),
    linear-gradient(0deg, rgba(245, 245, 245, 0.42), rgba(245, 245, 245, 0.42)),
    rgba(255, 255, 255, 0.18);
  background-blend-mode: normal, color-dodge;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.waitlist-panel__overlay {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.92), transparent 20%),
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.48), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12)),
    rgba(0, 0, 0, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

.waitlist-panel__content {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.waitlist-form__field {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.waitlist-form__field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-form__input {
  width: 100%;
  height: 74px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: #111111;
  outline: none;
  text-align: center;
}

.waitlist-form__input::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.waitlist-form__input:focus {
  border-color: rgba(255, 231, 161, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 4px rgba(255, 228, 145, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.06);
}

.waitlist-form__button {
  width: 100%;
  max-width: 320px;
  height: 62px;
  padding: 0 28px;
  border: 1px solid rgba(172, 126, 25, 0.18);
  border-radius: 999px;
  background: #efc85d;
  box-shadow:
    0 16px 34px rgba(209, 165, 33, 0.18),
    inset 0 1px 0 rgba(255, 244, 215, 0.54);
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #21170b;
  cursor: pointer;
}

.waitlist-form__button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.waitlist-form__message {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.62);
  text-align: center;
}

.waitlist-form__message {
  min-height: 26px;
}

.download-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.download-panel__note {
  margin: 0;
  max-width: 640px;
  font-family: var(--inter-font);
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  color: rgba(17, 17, 17, 0.74);
}

.download-panel__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
}

.download-panel__badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.download-panel__badge-link:hover {
  transform: translateY(-2px);
  filter: saturate(1.02);
}

.download-panel__badge {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}

.download-panel__badge--apple {
  height: 68px;
}

.download-panel__badge--google {
  height: 68px;
}

.site-footer {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1569px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at top left, rgba(241, 205, 98, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(31, 24, 12, 0.98) 0%, rgba(17, 13, 8, 0.98) 100%);
  border-radius: 34px 34px 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 56px rgba(0, 0, 0, 0.12);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px 44px;
  padding: 42px 38px 48px;
}

.site-footer__lead {
  display: grid;
  align-content: start;
  gap: 16px;
}

.site-footer__brand,
.site-footer__text,
.site-footer__eyebrow,
.site-footer__link {
  margin: 0;
  font-family: var(--inter-font);
}

.site-footer__brand {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 247, 228, 0.96);
}

.site-footer__text {
  max-width: 32ch;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 247, 228, 0.72);
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 176px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2cf69 0%, #e9bd42 100%);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 248, 223, 0.82);
  font-family: var(--inter-font);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1f170c;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 248, 223, 0.82);
  filter: brightness(1.02);
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer__eyebrow {
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 228, 0.5);
}

.site-footer__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 26px;
}

.site-footer__group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__group-title {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 247, 228, 0.94);
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__link {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 247, 228, 0.86);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ffffff;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.site-footer__social-link {
  font-family: var(--inter-font);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 247, 228, 0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #ffffff;
}

@keyframes recite-section-bg {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }

  50% {
    transform: translate3d(-20px, -12px, 0) scale(1.03);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }
}

@keyframes testimonials-marquee-vertical {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 9px));
  }
}

@keyframes scan-section-bg {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.03);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }
}

@media (max-width: 900px) {
  .site-nav {
    width: calc(100% - 28px);
    height: 76px;
    min-height: 76px;
    top: 18px;
    border-radius: 28px;
  }

  .site-nav__fill,
  .site-nav__overlay {
    border-radius: 28px;
  }

  .site-nav__content {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
  }

  .site-nav__brand {
    width: auto;
    justify-content: flex-start;
  }

  .site-nav__brand-text {
    font-size: 21px;
  }

  .site-nav__menu {
    order: 0;
    width: auto;
    margin-left: auto;
    margin-right: 14px;
    gap: 16px;
    flex-wrap: nowrap;
  }

  .site-nav__menu-link {
    font-size: 15px;
  }

  .site-nav__link {
    min-width: 170px;
    height: 46px;
    font-size: 16px;
  }

  .site-footer {
    width: calc(100% - 28px);
    border-radius: 24px 24px 0 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 24px 34px;
  }

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

}

@media (max-width: 640px) {
  .site-nav {
    width: calc(100% - 20px);
    top: 12px;
    border-radius: 24px;
  }

  .site-nav__fill,
  .site-nav__overlay {
    border-radius: 24px;
  }

  .site-nav__content {
    gap: 12px;
    padding: 14px 14px 16px;
  }

  .site-nav__logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .site-nav__brand-text {
    font-size: 19px;
  }

  .site-nav__menu {
    gap: 12px 16px;
  }

  .site-nav__menu-link {
    font-size: 14px;
  }

  .site-nav__link {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  .site-footer {
    width: calc(100% - 20px);
    border-radius: 20px 20px 0 0;
  }

  .site-footer__inner {
    gap: 22px;
    padding: 26px 18px 30px;
  }

  .site-footer__brand {
    font-size: 24px;
  }

  .site-footer__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .site-footer__nav {
    gap: 14px;
  }

  .site-footer__eyebrow,
  .site-footer__group-title {
    display: none;
  }

  .site-footer__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .site-footer__group {
    display: contents;
  }

  .site-footer__links {
    gap: 8px;
  }

  .site-footer__social {
    gap: 10px 14px;
    padding-top: 4px;
  }

  .site-footer__link,
  .site-footer__social-link {
    font-size: 15px;
  }

  .site-footer__cta {
    width: 100%;
  }

}

@media (max-width: 768px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-nav--animated {
    transition:
      top 220ms ease,
      width 220ms ease,
      height 220ms ease,
      min-height 220ms ease,
      border-radius 220ms ease,
      box-shadow 220ms ease;
  }

  .site-nav--animated .site-nav__content {
    transition: padding 220ms ease, gap 220ms ease;
  }

  .site-nav--animated .site-nav__brand,
  .site-nav--animated .site-nav__toggle,
  .site-nav--animated .site-nav__menu,
  .site-nav--animated .site-nav__link,
  .site-nav__brand-text,
  .site-nav__logo {
    transition:
      transform 220ms ease,
      opacity 180ms ease;
  }

  html.is-scaled .landing-page {
    transform: none;
  }

  .hero-trust {
    display: none;
  }

  .landing-stage,
  .landing-artboard {
    min-height: auto;
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }

  .landing-page {
    position: relative;
    width: 100%;
    height: auto;
    transform: none;
    transform-origin: top left;
    overflow: hidden;
    padding: 108px 16px 0;
    background:
      radial-gradient(circle at 8% 12%, rgba(255, 204, 70, 0.36), transparent 28%),
      radial-gradient(circle at 92% 10%, rgba(255, 241, 192, 0.94), transparent 26%),
      radial-gradient(circle at 18% 58%, rgba(255, 224, 121, 0.24), transparent 24%),
      linear-gradient(180deg, #fffdf8 0%, #fff8e8 38%, #fffef9 100%);
  }

  .bg-gradient-two {
    width: 250px;
    height: 270px;
    left: -94px;
    top: 520px;
    filter: blur(98px);
    opacity: 0.82;
  }

  .bg-gradient-one {
    width: 260px;
    height: 260px;
    right: -86px;
    left: auto;
    top: 96px;
    filter: blur(104px);
    opacity: 0.88;
  }

  .bg-gradient-feature-left {
    width: 240px;
    height: 270px;
    right: -84px;
    left: auto;
    top: 1720px;
    filter: blur(102px);
    opacity: 0.7;
  }

  .bg-gradient-feature-right {
    width: 220px;
    height: 260px;
    left: -86px;
    top: 2620px;
    filter: blur(102px);
    opacity: 0.66;
  }

  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 72px;
    height: auto;
    border-radius: 26px;
    overflow: visible;
  }

  .site-nav__fill,
  .site-nav__overlay {
    border-radius: 26px;
  }

  .site-nav__fill {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 223, 0.4)),
      rgba(255, 255, 255, 0.2);
    box-shadow:
      0 18px 48px rgba(118, 86, 16, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .site-nav__overlay {
    background:
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 18%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 245, 220, 0.18)),
      rgba(0, 0, 0, 0.004);
    border: 1px solid rgba(255, 255, 255, 0.94);
  }

  .site-nav__content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
  }

  .site-nav__brand {
    width: auto;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav__logo {
    width: 40px;
    height: 40px;
  }

  .site-nav__brand-text {
    font-size: 18px;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav--animated.is-collapsed {
    width: 56px;
    min-height: 56px;
    height: 56px;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(118, 86, 16, 0.14);
  }

  .site-nav--animated.is-collapsed .site-nav__fill,
  .site-nav--animated.is-collapsed .site-nav__overlay {
    border-radius: 999px;
  }

  .site-nav--animated.is-collapsed .site-nav__content {
    padding: 0;
    gap: 0;
  }

  .site-nav--animated.is-collapsed .site-nav__brand,
  .site-nav--animated.is-collapsed .site-nav__toggle,
  .site-nav--animated.is-collapsed .site-nav__menu,
  .site-nav--animated.is-collapsed .site-nav__link {
    opacity: 0;
    transform: translateY(-8px) scale(0.94);
    pointer-events: none;
  }

  .site-nav--animated.is-collapsed .site-nav__collapsed-icon {
    opacity: 1;
    transform: scale(1);
  }

  .site-nav__menu,
  .site-nav__link {
    display: none;
  }

  .site-nav.is-open {
    padding-bottom: 14px;
  }

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

  .site-nav.is-open .site-nav__toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav.is-open .site-nav__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    grid-column: 1 / -1;
    margin: 4px 0 0;
    padding: 16px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 232, 0.62)),
      rgba(255, 255, 255, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
      0 18px 44px rgba(118, 86, 16, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
  }

  .site-nav.is-open .site-nav__menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2a2112;
    background: rgba(255, 255, 255, 0.66);
  }

  .site-nav.is-open .site-nav__link {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    height: 52px;
    margin-top: 6px;
    font-size: 16px;
    justify-content: center;
    background:
      linear-gradient(180deg, #f5d36f 0%, #e8bb43 100%),
      rgba(255, 219, 114, 0.92);
    box-shadow:
      0 16px 32px rgba(186, 140, 26, 0.18),
      inset 0 1px 0 rgba(255, 247, 224, 0.74);
  }

  .hero {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 28px;
    padding-top: 22px;
    overflow: hidden;
  }

  .intro-block,
  .mockup-left,
  .mockup-spline,
  .mockup-right,
  .mockup-label,
  .mockup-label-left,
  .mockup-label-right {
    display: none;
  }

  .hero-panel,
  .hero-stat,
  .scan-section,
  .recite-section,
  .testimonials-section,
  .faq-section,
  .waitlist-section {
    grid-column: 1 / -1;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    transform: none;
    padding: 18px 0 118px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .hero-download {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 24px;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
  }

  .hero-download__link {
    justify-content: center;
  }

  .hero-download__badge {
    max-width: 100%;
    height: 46px;
  }

  .hero-title {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    max-width: 8.2ch;
    margin: 0 auto;
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.92;
    letter-spacing: -0.065em;
    text-align: center;
    color: #090909;
    z-index: 2;
  }

  .hero-title__focus {
    white-space: nowrap;
  }

  .hero-title__focus::after {
    height: 0.82em;
  }

  .hero-trust {
    position: relative;
    left: auto;
    top: auto;
    margin: 16px auto 0;
    padding: 9px 13px 9px 9px;
    width: fit-content;
    max-width: calc(100% - 24px);
    z-index: 2;
  }

  .hero-trust__avatars {
    margin-right: 10px;
  }

  .hero-trust__avatar {
    width: 22px;
    height: 22px;
  }

  .hero-trust__text {
    font-size: 13px;
    line-height: 1.12;
  }

  .mosque-landing {
    width: calc(100% + 18px);
    height: 220px;
    left: -9px;
    top: auto;
    bottom: 0;
    border-radius: 0 0 26px 26px;
    filter: blur(1px);
    opacity: 0.95;
  }

  .hero-stat {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    margin: 2px 0 6px;
    padding: 22px 18px 24px;
    font-size: clamp(29px, 8.5vw, 42px);
    line-height: 1.06;
    text-align: center;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 236, 0.42)),
      rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow:
      0 20px 44px rgba(137, 100, 13, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translateY(18px);
    animation: mobile-stat-reveal 0.8s ease 0.14s forwards;
  }

  .hero-stat::before {
    content: "Why It Matters";
    display: block;
    margin-bottom: 14px;
    font-family: var(--inter-font);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(34, 28, 17, 0.56);
  }

  .hero-stat::after {
    content: "Introducing: Quran Mode";
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    margin: 20px auto 0;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 227, 0.54)),
      rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow:
      0 14px 30px rgba(137, 100, 13, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-family: var(--inter-font);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(34, 28, 17, 0.62);
    white-space: nowrap;
  }

  .hero-stat__text {
    display: block;
    color: rgba(0, 0, 0, 0.92);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }

  .solution-panel {
    display: none;
  }

  .scan-section,
  .recite-section,
  .testimonials-section {
    position: relative;
    width: 100%;
    min-height: 0;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    display: grid;
    gap: 18px;
    padding: 26px 20px;
    margin-top: 8px;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 236, 0.38)),
      rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow:
      0 20px 44px rgba(137, 100, 13, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
  }

  .scan-section {
    margin-top: 18px;
  }

  .scan-section__bg,
  .recite-section__bg,
  .testimonials-section__bg {
    width: 120%;
    height: 280px;
    left: 50%;
    top: auto;
    bottom: -40px;
    transform: translateX(-50%);
    filter: blur(60px);
    opacity: 0.9;
  }

  .scan-section__copy,
  .recite-section__copy,
  .scan-section__media,
  .recite-section__media {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    transform: none;
    z-index: 1;
  }

  .feature-ui-row,
  .feature-ui-row--right {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 0.7rem;
  }

  .feature-chip {
    font-size: 0.76rem;
    min-height: 2rem;
    padding: 0.44rem 0.82rem;
    border-radius: 999px;
  }

  .scan-section__title,
  .recite-section__title {
    margin-bottom: 0.8rem;
    max-width: 11ch;
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-align: left;
    color: #0f0f0f;
  }

  .scan-section__list,
  .recite-section__list {
    margin: 0;
    padding-left: 1.05rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(18, 14, 7, 0.8);
  }

  .scan-section__list li + li,
  .recite-section__list li + li {
    margin-top: 0.55rem;
  }

  .recite-section__description {
    margin: 0.85rem 0 0;
    font-size: 0.98rem;
    line-height: 1.62;
    color: rgba(24, 18, 10, 0.68);
  }

  .scan-section__video,
  .recite-section__video {
    display: none;
  }

  .scan-section__mobile-image,
  .recite-section__mobile-image {
    width: min(100%, 240px);
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 24px;
    filter: drop-shadow(0 18px 42px rgba(112, 84, 19, 0.1));
  }

  .scan-section__mobile-image {
    transform: rotate(-5deg);
    transform-origin: center center;
  }

  .recite-section__mobile-image {
    transform: rotate(5deg);
    transform-origin: center center;
  }

  .testimonials-section {
    margin-top: 22px;
    padding: 26px 20px;
  }

  .testimonials-section__header {
    margin: 0 0 16px;
    max-width: none;
  }

  .testimonials-section__eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .testimonials-section__title {
    margin-bottom: 12px;
    max-width: 11ch;
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .testimonials-section__intro {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .testimonials-section__shell,
  .testimonials-section__fill,
  .testimonials-section__overlay {
    border-radius: 30px;
  }

  .testimonials-section__stage {
    height: 520px;
    padding: 18px 14px;
  }

  .testimonials-section__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    transform:
      translateX(-16px)
      translateY(-4px)
      rotateX(14deg)
      rotateY(-7deg)
      rotateZ(10deg);
  }

  .testimonials-section__column:nth-child(n + 3) {
    display: none;
  }

  .testimonials-section__track {
    gap: 12px;
    animation-duration: 26s;
  }

  .testimonial-card {
    padding: 14px 14px 15px;
    border-radius: 20px;
  }

  .testimonial-card__person {
    gap: 10px;
  }

  .testimonial-card__avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-card__name {
    font-size: 14px;
  }

  .testimonial-card__meta {
    font-size: 11px;
  }

  .testimonial-card__quote {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.48;
  }

  .testimonials-section__fade--top,
  .testimonials-section__fade--bottom {
    height: 18%;
  }

  .testimonials-section__fade--left,
  .testimonials-section__fade--right {
    width: 12%;
  }

  .faq-section,
  .waitlist-section {
    position: relative;
    width: 100%;
    min-height: 0;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
    padding: 0 8px;
  }

  @supports (content-visibility: auto) {
    .scan-section,
    .recite-section,
    .testimonials-section,
    .faq-section,
    .waitlist-section {
      content-visibility: auto;
      contain-intrinsic-size: 900px;
    }
  }

  .faq-section__bg--left {
    width: 220px;
    height: 240px;
    right: -60px;
    left: auto;
    top: 180px;
    filter: blur(96px);
  }

  .faq-section__bg--right {
    width: 220px;
    height: 220px;
    left: -70px;
    top: 24px;
    filter: blur(96px);
  }

  .faq-shell,
  .faq-shell__fill,
  .faq-shell__overlay {
    border-radius: 30px;
  }

  .faq-shell__fill {
    box-shadow:
      0 20px 44px rgba(150, 111, 18, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .faq-shell__overlay,
  .waitlist-panel__overlay {
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
  }

  .faq-shell__content {
    padding: 24px 20px 22px;
  }

  .faq-section__header {
    margin-bottom: 14px;
  }

  .faq-section__eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .faq-section__title {
    max-width: 11ch;
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .faq-section__intro {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item__summary {
    padding: 14px 0;
    gap: 12px;
  }

  .faq-item__question {
    max-width: none;
    font-size: 1rem;
    line-height: 1.42;
    letter-spacing: -0.02em;
  }

  .faq-item__icon {
    width: 32px;
    height: 32px;
  }

  .faq-item__answer {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .waitlist-section__bg--left {
    display: none;
  }

  .waitlist-section__bg--right {
    display: none;
  }

  .waitlist-section__copy {
    margin-bottom: 18px;
    text-align: center;
    padding: 0 8px;
  }

  .waitlist-section__title {
    font-size: clamp(33px, 10vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: none;
  }

  .waitlist-panel {
    width: 100%;
    padding: 20px 18px 22px;
    border: 1px solid rgba(225, 214, 187, 0.9);
    border-radius: 28px;
    background: rgba(255, 252, 244, 0.72);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  }

  .waitlist-panel__fill,
  .waitlist-panel__overlay {
    display: none;
  }

  .waitlist-panel__content {
    padding: 0;
  }

  .waitlist-form {
    display: grid;
    gap: 14px;
  }

  .waitlist-form__field {
    gap: 10px;
  }

  .waitlist-form__field-label {
    font-size: 13px;
    text-align: left;
  }

  .waitlist-form__input {
    height: 56px;
    padding: 0 18px;
    font-size: 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 252, 244, 0.74)),
      rgba(255, 255, 255, 0.24);
  }

  .waitlist-form__button {
    width: 100%;
    max-width: none;
    height: 54px;
    font-size: 16px;
  }

  .waitlist-form__message {
    text-align: center;
  }

  .download-panel {
    gap: 18px;
    padding: 0;
  }

  .download-panel__note {
    font-size: 16px;
    line-height: 1.58;
  }

  .download-panel__badges {
    gap: 10px;
  }

  .download-panel__badge {
    max-width: 100%;
  }

  .download-panel__badge--apple {
    height: 54px;
  }

  .download-panel__badge--google {
    height: 54px;
  }

  .site-footer {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    margin-top: 48px;
  }

  .site-footer__inner {
    padding: 26px 20px 28px;
    gap: 20px;
    text-align: left;
  }

  .site-footer__brand,
  .site-footer__text,
  .site-footer__lead,
  .site-footer__nav {
    width: 100%;
  }
}

@keyframes mobile-stat-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 480px) {
  .landing-page {
    padding: 104px 14px 0;
  }

  .hero {
    row-gap: 24px;
  }

  .hero-title {
    max-width: 8.1ch;
    font-size: clamp(38px, 11.5vw, 50px);
  }

  .mosque-landing {
    height: 198px;
  }

  .mockup-left,
  .mockup-spline,
  .mockup-right {
    max-width: 144px;
  }

  .mockup-left {
    margin-left: 2px;
    margin-top: -22px;
  }

  .mockup-right {
    margin-right: 0;
    margin-top: -12px;
  }

  .hero-stat {
    font-size: clamp(26px, 8.2vw, 36px);
    padding: 20px 16px 22px;
  }

  .scan-section,
  .recite-section,
  .testimonials-section,
  .faq-shell__content,
  .waitlist-panel__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scan-section__title,
  .recite-section__title,
  .testimonials-section__title,
  .faq-section__title,
  .waitlist-section__title {
    max-width: none;
    font-size: clamp(30px, 9vw, 38px);
  }

  .scan-section__mobile-image,
  .recite-section__mobile-image {
    width: min(100%, 220px);
  }

  .testimonials-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-stat::after {
    font-size: 10px;
    padding-left: 0.82rem;
    padding-right: 0.82rem;
  }

  .site-footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.home-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 138px 32px 0;
  background:
    linear-gradient(180deg, #fffdf7 0%, #fff8e9 46%, #fffef9 100%);
}

.home-page__bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(170px);
  opacity: 0.9;
}

.home-page__bg--hero {
  width: 620px;
  height: 620px;
  top: 80px;
  right: -120px;
  background: linear-gradient(180deg, rgba(255, 218, 126, 0.92) 0%, rgba(255, 246, 188, 0.86) 100%);
}

.home-page__bg--mid {
  width: 520px;
  height: 680px;
  top: 1280px;
  left: -130px;
  background: rgba(255, 204, 74, 0.84);
}

.home-page__bg--lower {
  width: 620px;
  height: 620px;
  top: 2620px;
  right: -140px;
  background: linear-gradient(180deg, rgba(255, 214, 128, 0.88) 0%, rgba(255, 248, 208, 0.84) 100%);
}

.home-page .site-nav {
  position: fixed;
  top: 22px;
  width: min(1320px, calc(100vw - 64px));
}

.home-hero,
.home-intro,
.feature-section,
.home-faq,
.home-waitlist,
.home-footer,
.home-stat {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 110px;
}

.home-hero__copy {
  max-width: 640px;
}

.home-hero__eyebrow {
  margin: 0 0 18px;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.home-hero__title {
  margin: 0 0 20px;
  font-family: var(--sf-font);
  font-size: clamp(70px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #111111;
}

.home-hero__intro {
  margin: 0 0 34px;
  max-width: 34ch;
  font-family: var(--inter-font);
  font-size: 22px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.72);
}

.home-hero__visual {
  position: relative;
  min-height: 740px;
}

.home-hero__mosque {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(100%, 700px);
  height: 330px;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: top center;
  filter: blur(1.4px);
  opacity: 0.76;
}

.home-hero__mockup {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.home-hero__mockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-hero__mockup p {
  display: none;
}

.home-hero__mockup--left {
  width: 290px;
  left: 18px;
  bottom: 26px;
}

.home-hero__mockup--left img {
  transform: rotate(-8deg);
}

.home-hero__mockup--right {
  width: 280px;
  right: 10px;
  top: 60px;
}

.home-hero__mockup--right img {
  transform: rotate(8deg);
}

.home-stat {
  margin-bottom: 110px;
}

.home-stat__eyebrow {
  margin: 0 0 14px;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.home-stat__text {
  display: block;
  margin: 0;
  font-family: var(--inter-font);
  font-size: clamp(56px, 5vw, 80px);
  line-height: 1.04;
  font-weight: 500;
  text-align: left;
  --stat-highlight-size: 16%;
  color: transparent;
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%);
  background-repeat: no-repeat;
  background-position: 0 0, 0 0;
  background-size: var(--stat-highlight-size) 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  will-change: background-size;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 110px;
}

.home-intro__copy {
  max-width: 560px;
}

.home-intro__eyebrow {
  margin: 0 0 16px;
  font-family: var(--inter-font);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(34, 28, 17, 0.62);
}

.home-intro__title {
  margin: 0 0 20px;
  font-family: var(--inter-font);
  font-size: clamp(58px, 6vw, 84px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #000000;
}

.home-intro__text {
  margin: 0;
  font-family: var(--inter-font);
  font-size: 23px;
  line-height: 1.62;
  color: rgba(17, 17, 17, 0.72);
}

.home-intro__card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  min-height: 660px;
}

.home-intro__card-fill,
.home-intro__card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 38px;
}

.home-intro__card-fill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 245, 224, 0.18)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.home-intro__card-overlay {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 245, 223, 0.14)),
    rgba(0, 0, 0, 0.004);
  border: 1px solid rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.home-intro__silhouette {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  opacity: 0.58;
}

.home-intro__silhouette img {
  display: block;
  width: 100%;
  height: auto;
}

.home-intro__card-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 22px;
  padding: 38px;
  min-height: 660px;
}

.home-intro__solution {
  margin: 0;
  max-width: 12ch;
  font-family: var(--inter-font);
  font-size: clamp(48px, 4.2vw, 70px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #000000;
}

.home-intro__solution-image {
  display: block;
  width: 100%;
  height: auto;
  justify-self: center;
}

.feature-section {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 110px;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) 340px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 247, 228, 0.18)),
    rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.feature-card--reverse {
  grid-template-columns: 340px minmax(0, 0.94fr);
}

.feature-card--reverse .feature-card__copy {
  order: 2;
}

.feature-card--reverse .feature-card__media {
  order: 1;
}

.feature-card__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.feature-card__title {
  margin: 0 0 18px;
  max-width: 12ch;
  font-family: var(--inter-font);
  font-size: clamp(44px, 4vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #000000;
}

.feature-card__list {
  margin: 0 0 18px;
  padding-left: 1.2rem;
  font-family: var(--inter-font);
  font-size: 22px;
  line-height: 1.62;
  color: rgba(17, 17, 17, 0.76);
}

.feature-card__list li + li {
  margin-top: 10px;
}

.feature-card__description {
  margin: 0;
  max-width: 34ch;
  font-family: var(--inter-font);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.68);
}

.feature-card__media {
  display: flex;
  justify-content: center;
}

.feature-card__video,
.feature-card__mobile-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.feature-card__video--scan {
  transform: rotate(-5deg);
}

.feature-card__video--read {
  transform: rotate(5deg);
}

.feature-card__mobile-image {
  display: none;
}

.home-faq {
  margin-bottom: 110px;
}

.home-faq .faq-shell {
  overflow: hidden;
}

.home-waitlist {
  margin-bottom: 0;
}

.home-footer {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(1320px, 100%);
  transform: none;
  margin: 36px auto 0;
}

@media (max-width: 1120px) {
  .home-page {
    padding-left: 22px;
    padding-right: 22px;
  }

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

  .home-hero__copy,
  .home-intro__copy {
    max-width: none;
  }

  .home-hero__panel {
    min-height: 680px;
  }

  .home-intro__card-content,
  .feature-card,
  .feature-card--reverse {
    grid-template-columns: 1fr;
  }

  .feature-card--reverse .feature-card__copy,
  .feature-card--reverse .feature-card__media {
    order: initial;
  }

  .feature-card__title,
  .home-intro__solution {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .home-page {
    padding: 118px 14px 0;
  }

  .home-page .site-nav {
    position: fixed;
    top: 10px;
    width: calc(100% - 20px);
  }

  .home-page__bg--hero {
    width: 320px;
    height: 320px;
    top: 90px;
    right: -110px;
    filter: blur(110px);
  }

  .home-page__bg--mid {
    width: 260px;
    height: 340px;
    top: 980px;
    left: -80px;
    filter: blur(110px);
  }

  .home-page__bg--lower {
    width: 280px;
    height: 340px;
    top: 2580px;
    right: -100px;
    filter: blur(110px);
  }

  .home-hero,
  .home-stat,
  .home-intro,
  .feature-section,
  .home-faq,
  .home-waitlist,
  .home-footer {
    width: 100%;
  }

  .home-hero {
    gap: 24px;
    margin-bottom: 72px;
  }

  .home-hero__eyebrow,
  .home-intro__eyebrow,
  .home-stat__eyebrow,
  .faq-section__eyebrow {
    font-size: 13px;
  }

  .home-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: none;
  }

  .home-hero__eyebrow,
  .home-hero__intro,
  .home-hero .hero-download {
    display: none;
  }

  .home-hero__title {
    max-width: 9ch;
    margin: 0 auto;
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 0.94;
    text-align: center;
  }

  .home-hero__intro {
    font-size: 17px;
    line-height: 1.58;
    margin-bottom: 24px;
  }

  .home-hero__visual {
    min-height: 520px;
  }

  .home-hero__mosque {
    width: 100%;
    max-width: 420px;
    height: 190px;
  }

  .home-hero__mockup--left,
  .home-hero__mockup--right {
    width: 170px;
  }

  .home-hero__mockup--left {
    left: 14px;
    bottom: 18px;
  }

  .home-hero__mockup--right {
    right: 14px;
    top: 34px;
  }

  .home-stat {
    margin-bottom: 72px;
  }

  .home-stat__text {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.08;
  }

  .home-stat .hero-stat__text {
    background-image:
      linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 100%);
  }

  .home-intro {
    gap: 24px;
    margin-bottom: 72px;
  }

  .home-intro {
    display: none;
  }

  .home-intro__title {
    font-size: clamp(40px, 11vw, 54px);
  }

  .home-intro__text {
    font-size: 17px;
    line-height: 1.58;
  }

  .home-intro__card {
    min-height: auto;
    border-radius: 30px;
  }

  .home-intro__card-fill,
  .home-intro__card-overlay {
    border-radius: 30px;
  }

  .home-intro__card-content {
    min-height: auto;
    padding: 22px 18px 24px;
    gap: 18px;
  }

  .home-intro__silhouette {
    width: 68%;
  }

  .home-intro__solution {
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-intro__solution-image {
    width: min(100%, 220px);
  }

  .feature-section {
    gap: 24px;
    margin-bottom: 72px;
  }

  .feature-card {
    padding: 22px 18px;
    border-radius: 30px;
    gap: 18px;
  }

  .feature-card__title,
  .faq-section__title,
  .waitlist-section__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .feature-card__list {
    font-size: 16px;
    line-height: 1.58;
    margin-bottom: 14px;
  }

  .feature-card__description,
  .faq-section__intro {
    font-size: 15px;
    line-height: 1.56;
  }

  .feature-card__video {
    display: none;
  }

  .feature-card__mobile-image {
    display: block;
    max-width: 220px;
  }

  .feature-card__mobile-image--scan {
    transform: rotate(-5deg);
  }

  .feature-card__mobile-image--read {
    transform: rotate(5deg);
  }

  .home-faq {
    margin-bottom: 72px;
  }

  .faq-shell,
  .faq-shell__fill,
  .faq-shell__overlay {
    border-radius: 28px;
  }

  .faq-shell__content {
    padding: 20px 18px 22px;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__answer {
    font-size: 14px;
  }

  .home-footer {
    width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 520px) {
  .home-page {
    padding-top: 112px;
  }

  .home-hero {
    gap: 18px;
    margin-bottom: 60px;
  }

  .home-hero__title {
    max-width: 8.5ch;
    font-size: clamp(34px, 10vw, 44px);
  }

  .home-hero__visual {
    min-height: 420px;
  }

  .home-hero__mosque {
    height: 150px;
  }

  .home-hero__mockup--left,
  .home-hero__mockup--right {
    width: 148px;
  }

  .home-hero__mockup--left {
    left: 8px;
    bottom: 14px;
  }

  .home-hero__mockup--right {
    right: 8px;
    top: 22px;
  }

  .home-stat .hero-stat__text {
    background-image:
      linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.92) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%);
  }
}
