/* global React */

/* ===== Multi-language fonts ===== */
[data-font="hi"] {
  --ff-ar-display: "Tiro Devanagari Hindi", "Cairo", serif;
  --ff-ar-ui: "Tiro Devanagari Hindi", "Cairo", system-ui, sans-serif;
}
[data-font="en"] {
  --ff-ar-display: "Inter", "Cairo", system-ui, sans-serif;
  --ff-ar-ui: "Inter", "Cairo", system-ui, sans-serif;
}
[data-font="ar"] {
  /* defaults already set */
}

/* Slightly tighter line-height for non-Arabic */
html[lang="en"] body,
html[lang="tr"] body,
html[lang="fr"] body,
html[lang="id"] body,
html[lang="hi"] body {
  line-height: 1.55;
}
html[lang="en"] .hero__title,
html[lang="tr"] .hero__title,
html[lang="fr"] .hero__title,
html[lang="id"] .hero__title,
html[lang="hi"] .hero__title,
html[lang="ur"] .hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.1;
}

/* ===== Theme + lang toggle (in nav) ===== */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  display: grid;
  place-items: center;
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s;
  flex: none;
}
.theme-toggle:hover {
  color: var(--y-700);
  border-color: var(--y-600);
}
.theme-toggle__icons {
  position: relative;
  width: 18px;
  height: 18px;
}
.theme-toggle__icons svg {
  position: absolute;
  inset: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.theme-toggle__icons[data-theme="light"] .theme-toggle__moon {
  opacity: 0;
  transform: rotate(-30deg) scale(0.6);
}
.theme-toggle__icons[data-theme="light"] .theme-toggle__sun {
  opacity: 1;
  transform: none;
}
.theme-toggle__icons[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: rotate(30deg) scale(0.6);
}
.theme-toggle__icons[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: none;
}

.lang-menu {
  position: relative;
}
.lang-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 36px;
  padding: 0 0.75rem;
  border-radius: var(--r-full);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  font-family: var(--ff-en-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.lang-menu__btn:hover {
  color: var(--y-700);
  border-color: var(--y-600);
}
.lang-menu__flag {
  font-size: 0.95rem;
  line-height: 1;
}
.lang-menu__short {
  letter-spacing: 0.08em;
}
.lang-menu__pop {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 0.35rem;
  min-width: 180px;
  z-index: 100;
  display: grid;
  gap: 2px;
  animation: langPop 0.18s var(--ease);
}
@keyframes langPop {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.lang-menu__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.5rem 0.65rem;
  background: transparent;
  border: none;
  border-radius: var(--r-sm);
  color: var(--fg-soft);
  cursor: pointer;
  text-align: start;
  font-family: var(--ff-ar-ui);
  font-size: 0.9rem;
  transition:
    background 0.15s,
    color 0.15s;
}
.lang-menu__item:hover {
  background: var(--g-100);
  color: var(--g-800);
}
.lang-menu__item.is-active {
  color: var(--g-700);
  font-weight: 600;
}
.lang-menu__check {
  margin-inline-start: auto;
  color: var(--y-700);
}

/* ===== Dark mode polish ===== */
[data-theme="dark"] body {
  background: var(--bg);
  color: var(--fg);
}
[data-theme="dark"] .nav {
  background:
    linear-gradient(180deg, rgba(11, 20, 16, 0.78), rgba(11, 20, 16, 0.58)),
    radial-gradient(
      circle at 18% 18%,
      rgba(201, 169, 97, 0.08),
      transparent 28%
    );
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .nav.is-scrolled {
  background: rgba(11, 20, 16, 0.92);
}
[data-theme="dark"] .nav__links a {
  color: rgba(243, 236, 224, 0.78);
}
[data-theme="dark"] .nav__links a:hover {
  color: var(--y-400);
}
[data-theme="dark"] .nav__menu-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(243, 236, 224, 0.85);
}
[data-theme="dark"] .nav__menu-btn:hover {
  border-color: var(--y-600);
  color: var(--y-400);
  background: rgba(201, 169, 97, 0.08);
}
[data-theme="dark"] .nav__mobile-download {
  background: linear-gradient(
    145deg,
    rgba(201, 169, 97, 0.14),
    rgba(201, 169, 97, 0.06)
  );
  border-color: rgba(201, 169, 97, 0.38);
  color: var(--y-300);
}
[data-theme="dark"] .nav__mobile-download:hover {
  color: var(--y-200);
  border-color: var(--y-500);
}
[data-theme="dark"] .nav__drawer-backdrop {
  background: rgba(2, 9, 6, 0.62);
}
[data-theme="dark"] .nav__drawer {
  background: linear-gradient(180deg, #0f1f18 0%, #0b1813 68%, #08120d 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: -16px 0 50px -24px rgba(0, 0, 0, 0.75);
}
[data-theme="dark"] .nav__drawer-kicker {
  color: rgba(243, 236, 224, 0.78);
}
[data-theme="dark"] .nav__drawer-link {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 236, 224, 0.9);
}
[data-theme="dark"] .nav__drawer-link:hover {
  background: rgba(201, 169, 97, 0.14);
  border-color: rgba(201, 169, 97, 0.5);
  color: var(--y-300);
}
[data-theme="dark"] .nav__drawer-link-icon {
  background: rgba(201, 169, 97, 0.12);
  color: var(--y-400);
}
[data-theme="dark"] .nav__drawer-close {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(243, 236, 224, 0.85);
}
[data-theme="dark"] .nav__drawer-close:hover {
  color: var(--y-400);
  border-color: var(--y-600);
  background: rgba(201, 169, 97, 0.08);
}
[data-theme="dark"] .lang-menu__btn,
[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(243, 236, 224, 0.85);
}
[data-theme="dark"] .lang-menu__btn:hover,
[data-theme="dark"] .theme-toggle:hover {
  color: var(--y-400);
  border-color: var(--y-600);
  background: rgba(201, 169, 97, 0.08);
}
[data-theme="dark"] .lang-menu__pop {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
[data-theme="dark"] .lang-menu__item {
  color: rgba(243, 236, 224, 0.85);
}
[data-theme="dark"] .lang-menu__item:hover {
  background: rgba(201, 169, 97, 0.12);
  color: var(--y-400);
}

[data-theme="dark"] .marquee {
  background: linear-gradient(90deg, #061008, #0e1c14, #061008);
  border-block-color: rgba(201, 169, 97, 0.25);
  color: var(--y-300);
}
[data-theme="dark"] .marquee__sep {
  color: var(--y-600);
}

[data-theme="dark"] .hero__title {
  color: var(--fg);
}
[data-theme="dark"] .hero {
  background-color: var(--bg);
}
[data-theme="dark"] .hero__bg::before {
  opacity: 0.24;
  mix-blend-mode: screen;
  filter: saturate(0.8) contrast(1.08);
}
[data-theme="dark"] .hero__bg::after {
  background:
    radial-gradient(
      circle at 22% 16%,
      rgba(201, 169, 97, 0.16),
      transparent 28%
    ),
    linear-gradient(to bottom, rgba(11, 20, 16, 0.08), rgba(11, 20, 16, 0.84)),
    repeating-linear-gradient(
      60deg,
      rgba(201, 169, 97, 0.04) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 78px
    );
  opacity: 0.88;
}
[data-theme="dark"] .hero__pill {
  background: rgba(20, 32, 25, 0.74);
  border-color: rgba(230, 207, 154, 0.18);
  color: rgba(243, 236, 224, 0.88);
}
[data-theme="dark"] .hero__title-en {
  color: rgba(243, 236, 224, 0.65);
}
[data-theme="dark"] .hero__title-en em {
  color: var(--y-400);
}
[data-theme="dark"] .hero__lede {
  color: rgba(243, 236, 224, 0.78);
}
[data-theme="dark"] .hero__meta {
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .hero__meta-item b {
  color: var(--y-400);
}
[data-theme="dark"] .hero__meta-item small {
  color: rgba(243, 236, 224, 0.55);
}
[data-theme="dark"] .hero__meta-item {
  background: rgba(20, 32, 25, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .hero__phones::before {
  border-color: rgba(230, 207, 154, 0.12);
  background-image:
    linear-gradient(155deg, rgba(14, 48, 32, 0.98), rgba(5, 23, 15, 0.96)),
    url("../assets/islamic-pattern.jpg");
  box-shadow: 0 40px 80px -42px rgba(0, 0, 0, 0.58);
}
[data-theme="dark"] .hero__caption {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--fg);
}
[data-theme="dark"] .hero__caption-ar {
  color: var(--y-300);
}
[data-theme="dark"] .hero__caption-bar {
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .hero__orbit {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(243, 236, 224, 0.75);
}
[data-theme="dark"] .hero__orbit:hover {
  color: var(--y-400);
  border-color: var(--y-600);
}
[data-theme="dark"] .hero__orbit.is-active {
  background: var(--y-700);
  color: var(--g-900);
  border-color: var(--y-400);
}

[data-theme="dark"] .trust {
  background: #0a1612;
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .trust__item {
  color: rgba(243, 236, 224, 0.8);
}
[data-theme="dark"] .trust__item svg {
  color: var(--y-400);
}

[data-theme="dark"] .features {
  background: var(--bg);
}
[data-theme="dark"] .section-head h2 {
  color: var(--fg);
}
[data-theme="dark"] .section-head .lede {
  color: rgba(243, 236, 224, 0.65);
}
[data-theme="dark"] .section-head .eyebrow {
  color: var(--y-400);
}
[data-theme="dark"] .bento {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--fg);
}
[data-theme="dark"] .bento__title {
  color: var(--fg);
}
[data-theme="dark"] .bento__desc {
  color: rgba(243, 236, 224, 0.7);
}
[data-theme="dark"] .bento__title-en {
  color: var(--y-400);
}
[data-theme="dark"] .bento--hero,
[data-theme="dark"] .bento--ink {
  background: linear-gradient(160deg, var(--g-800), #061a10);
}
[data-theme="dark"] .bento--accent {
  background: linear-gradient(160deg, var(--y-700), var(--y-800));
  color: #1a1306;
}
[data-theme="dark"] .bento--accent .bento__title {
  color: #1a1306;
}
[data-theme="dark"] .bento--accent .bento__title-en {
  color: rgba(26, 19, 6, 0.7);
}

[data-theme="dark"] .deepdive {
  background-color: #14533a;
  color: #f6f1e7;
}
[data-theme="dark"] .deepdive__nav-btn {
  background: rgba(248, 240, 226, 0.12);
  color: #f8f2e6;
  border-color: rgba(230, 207, 154, 0.44);
}
[data-theme="dark"] .deepdive__nav-btn.is-active {
  background: rgba(201, 169, 97, 0.9);
  color: #1f1707;
  border-color: rgba(230, 207, 154, 0.95);
}
[data-theme="dark"] .deepdive__visual--carousel {
  background: none;
  border-color: transparent;
}
[data-theme="dark"] .deepdive__slide-label {
  background: rgba(10, 22, 17, 0.82);
  color: rgba(243, 236, 224, 0.82);
  border-color: rgba(230, 207, 154, 0.18);
}
[data-theme="dark"] .deepdive__slide.is-active .deepdive__slide-label {
  background: rgba(201, 169, 97, 0.96);
  color: #1a1306;
  border-color: rgba(230, 207, 154, 0.86);
}
[data-theme="dark"] .deepdive__details {
  background: linear-gradient(
    180deg,
    rgba(20, 32, 25, 0.96),
    rgba(10, 22, 17, 0.98)
  );
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 52px -34px rgba(0, 0, 0, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .deepdive__title {
  color: #f6f1e7;
}
[data-theme="dark"] .deepdive__desc {
  color: rgba(243, 236, 224, 0.76);
}
[data-theme="dark"] .deepdive__highlight {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 236, 224, 0.9);
}
[data-theme="dark"] .deepdive__highlight-icon {
  background: linear-gradient(180deg, var(--y-600), var(--y-700));
  color: #201707;
}

[data-theme="dark"] .quran {
  background: #0a1612;
}
[data-theme="dark"] .quran::before {
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.8) contrast(1.08);
}
[data-theme="dark"] .quran::after {
  background:
    radial-gradient(
      circle at 22% 16%,
      rgba(201, 169, 97, 0.16),
      transparent 28%
    ),
    linear-gradient(to bottom, rgba(11, 20, 16, 0.08), rgba(11, 20, 16, 0.84)),
    repeating-linear-gradient(
      60deg,
      rgba(201, 169, 97, 0.04) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 78px
    );
  opacity: 0.88;
}
[data-theme="dark"] .quran__preview {
  background: linear-gradient(180deg, #1a2018, #15201a);
  border-color: rgba(201, 169, 97, 0.25);
}
[data-theme="dark"] .quran__ayahs {
  color: var(--fg);
}
[data-theme="dark"] .quran__bismillah {
  color: var(--y-400);
}
[data-theme="dark"] .quran__chip {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 236, 224, 0.75);
}
[data-theme="dark"] .quran__chip:hover,
[data-theme="dark"] .quran__chip.is-active {
  background: var(--y-700);
  color: var(--g-900);
  border-color: var(--y-700);
}
[data-theme="dark"] .quran__spotlight-shell {
  background: linear-gradient(180deg, rgba(20, 32, 25, 0.96), rgba(11, 22, 17, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 46px -34px rgba(0, 0, 0, 0.68);
}
[data-theme="dark"] .quran__spotlight-media {
  background: rgba(255, 255, 255, 0.04);
}
[data-theme="dark"] .quran__spotlight-name {
  color: var(--fg);
}
[data-theme="dark"] .quran__spotlight-meta,
[data-theme="dark"] .quran__spotlight-note {
  color: rgba(243, 236, 224, 0.72);
}
[data-theme="dark"] .quran__spotlight-badge {
  background: rgba(11, 22, 17, 0.9);
  color: var(--y-300);
  border-color: rgba(201, 169, 97, 0.22);
}
[data-theme="dark"] .quran__spotlight-stats span {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 236, 224, 0.9);
}

[data-theme="dark"] .prayer {
  background-color: #114630;
  color: #f6f1e7;
}
[data-theme="dark"] .prayer::before {
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.8) contrast(1.08);
}
[data-theme="dark"] .prayer::after {
  background:
    radial-gradient(
      circle at 22% 16%,
      rgba(201, 169, 97, 0.16),
      transparent 28%
    ),
    linear-gradient(to bottom, rgba(11, 20, 16, 0.06), rgba(11, 20, 16, 0.78)),
    repeating-linear-gradient(
      60deg,
      rgba(201, 169, 97, 0.04) 0 1px,
      transparent 1px 76px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 76px
    );
  opacity: 0.88;
}
[data-theme="dark"] .prayer__title {
  color: #fbf7ed;
}
[data-theme="dark"] .prayer__lede,
[data-theme="dark"] .prayer__direction {
  color: rgba(243, 236, 224, 0.74);
}
[data-theme="dark"] .prayer-card {
  box-shadow: 0 34px 62px -40px rgba(0, 0, 0, 0.62);
}

[data-theme="dark"] .audio {
  background: #0a1612;
}
[data-theme="dark"] .reciter {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .reciter:hover,
[data-theme="dark"] .reciter.is-playing {
  border-color: var(--g-700);
  box-shadow: var(--sh-md);
}
[data-theme="dark"] .reciter__name {
  color: var(--fg);
}
[data-theme="dark"] .reciter__meta {
  color: rgba(243, 236, 224, 0.55);
}

[data-theme="dark"] .review {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .review__text {
  color: rgba(243, 236, 224, 0.85);
}
[data-theme="dark"] .review__name {
  color: var(--fg);
}
[data-theme="dark"] .review__meta {
  color: rgba(243, 236, 224, 0.5);
}

[data-theme="dark"] .faq-item {
  background: #142019;
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .faq-item__btn {
  color: var(--fg);
}
[data-theme="dark"] .faq-item__body p {
  color: rgba(243, 236, 224, 0.7);
}
[data-theme="dark"] .faq-item__icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--y-400);
}
[data-theme="dark"] .faq-item.is-open .faq-item__icon {
  background: var(--y-700);
  color: var(--g-900);
}
[data-theme="dark"] .faq-item.is-open {
  border-color: var(--y-700);
}

[data-theme="dark"] .download-v2 {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(201, 169, 97, 0.2),
      transparent 44%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(201, 169, 97, 0.14),
      transparent 48%
    ),
    linear-gradient(165deg, #052517 0%, #08311d 48%, #04180f 100%);
}

[data-theme="dark"] .footer {
  background: #04100a;
}

/* ===== MOBILE — comprehensive ===== */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
  .deepdive__visual--carousel {
    min-height: 32rem;
    padding: 1.6rem 0.2rem 1.6rem;
  }
  .deepdive__carousel {
    min-height: 25.5rem;
  }
  .deepdive__slide-phone .phone {
    width: clamp(178px, 20vw, 214px);
    height: clamp(366px, 43vw, 442px);
  }
  .deepdive__slide[data-offset="0"] {
    transform: translate(-50%, -50%) translateY(10px);
  }
  .deepdive__slide[data-offset="-1"] {
    transform: translate(-50%, -50%) translateX(-138px) translateY(30px)
      rotateY(30deg) rotateZ(-4deg);
  }
  .deepdive__slide[data-offset="1"] {
    transform: translate(-50%, -50%) translateX(138px) translateY(30px)
      rotateY(-30deg) rotateZ(4deg);
  }
  .deepdive__slide[data-offset="-2"] {
    transform: translate(-50%, -50%) translateX(-218px) translateY(64px)
      rotateY(38deg) rotateZ(-5deg);
    opacity: 0.24;
  }
  .deepdive__slide[data-offset="2"] {
    transform: translate(-50%, -50%) translateX(218px) translateY(64px)
      rotateY(-38deg) rotateZ(5deg);
    opacity: 0.24;
  }
  .deepdive__details {
    width: min(100%, 40rem);
  }
}

@media (max-width: 768px) {
  /* Mobile app bar + drawer */
  .nav {
    border-bottom-color: transparent;
    background:
      linear-gradient(
        180deg,
        rgba(245, 239, 222, 0.7),
        rgba(245, 239, 222, 0.32)
      ),
      radial-gradient(
        circle at 16% 18%,
        rgba(28, 88, 66, 0.08),
        transparent 28%
      ),
      radial-gradient(
        circle at 84% 16%,
        rgba(201, 169, 97, 0.12),
        transparent 24%
      );
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
  }
  .nav:not(.is-scrolled) {
    border-bottom-color: rgba(28, 88, 66, 0.06);
  }
  [data-theme="dark"] .nav:not(.is-scrolled) {
    border-bottom-color: rgba(255, 255, 255, 0.05);
    background:
      linear-gradient(180deg, rgba(12, 24, 17, 0.76), rgba(12, 24, 17, 0.44)),
      radial-gradient(
        circle at 18% 18%,
        rgba(201, 169, 97, 0.07),
        transparent 26%
      );
  }
  .nav__wrap {
    width: min(100% - 2rem, var(--container));
    height: 66px;
    gap: 0.55rem;
    position: relative;
    justify-content: center;
  }
  .nav__menu-btn {
    display: inline-flex;
    flex: none;
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav__brand {
    min-width: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__logo {
    width: 142px;
    height: 46px;
  }
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__mobile-actions {
    display: flex;
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav__mobile-download {
    min-height: 36px;
  }

  .nav__drawer-layer {
    position: fixed;
    inset: 0;
    display: block;
    pointer-events: none;
    z-index: 320;
  }
  .nav__drawer-layer.is-open {
    pointer-events: auto;
  }
  .nav__drawer-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(3, 10, 7, 0.45);
    backdrop-filter: blur(1px);
    transition: opacity 0.3s var(--ease);
  }
  .nav__drawer-layer.is-open .nav__drawer-backdrop {
    opacity: 1;
  }
  .nav__drawer {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    bottom: 0;
    width: min(88vw, 360px);
    padding: calc(32px + 0.9rem) 0.9rem 1rem;
    background: linear-gradient(180deg, #f5efde 0%, #f0e7d1 64%, #eadfc8 100%);
    box-shadow: -16px 0 50px -24px rgba(26, 22, 17, 0.35);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.95rem;
    transform: translateX(108%);
    transition: transform 0.34s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  [dir="rtl"] .nav__drawer {
    transform: translateX(-108%);
  }
  .nav__drawer-layer.is-open .nav__drawer {
    transform: translateX(0);
  }
  .nav__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .nav__drawer-kicker {
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--fg-soft);
    max-width: 26ch;
  }
  .nav__drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(15, 77, 42, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: var(--g-700);
    display: grid;
    place-items: center;
    flex: none;
    transition:
      color 0.2s,
      border-color 0.2s,
      background 0.2s;
  }
  .nav__drawer-close:hover {
    color: var(--y-800);
    border-color: rgba(201, 169, 97, 0.55);
    background: #fff;
  }
  .nav__drawer-links {
    display: grid;
    gap: 0.55rem;
    align-content: start;
  }
  .nav__drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.78rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 77, 42, 0.13);
    background: rgba(255, 255, 255, 0.72);
    color: var(--g-800);
    font-family: var(--ff-ar-ui);
    font-size: 0.95rem;
    font-weight: 600;
    transition:
      transform 0.2s var(--ease),
      border-color 0.2s,
      background 0.2s,
      color 0.2s;
  }
  .nav__drawer-link:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 97, 0.6);
    background: #fff;
    color: var(--y-800);
  }
  .nav__drawer-link-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(15, 77, 42, 0.08);
    color: var(--g-700);
    flex: none;
  }
  .nav__drawer-link-icon svg {
    width: 18px;
    height: 18px;
  }
  .nav__drawer-foot {
    display: grid;
    gap: 0.75rem;
    padding-top: 0.4rem;
    border-top: 1px dashed rgba(15, 77, 42, 0.2);
  }
  .nav__drawer-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav__drawer-tools .theme-toggle {
    width: 36px;
    height: 36px;
  }
  .nav__drawer-tools .lang-menu {
    flex: 1;
  }
  .nav__drawer-tools .lang-menu__btn {
    width: 100%;
    justify-content: space-between;
    height: 36px;
    padding-inline: 0.7rem;
  }
  .nav__drawer-tools .lang-menu__short {
    display: inline;
  }
  .nav__drawer-tools .lang-menu__pop {
    inset-inline: 0;
    inset-inline-end: auto;
    min-width: 0;
  }
  .nav__drawer-download {
    width: 100%;
    justify-content: center;
    min-height: 42px;
  }

  /* Marquee — slow & punchy */
  .marquee {
    font-size: 0.72rem;
    padding-block: 0.5rem;
  }
  .marquee__item {
    padding-inline: 0.9rem;
  }

  /* Hero */
  .hero {
    padding-top: 90px;
    padding-bottom: 38px;
    min-height: auto;
  }
  .hero__bg::before {
    background-size:
      260px auto,
      auto,
      auto,
      auto;
    opacity: 0.3;
  }
  .hero__bg::after {
    opacity: 0.84;
  }
  .hero__wrap {
    min-height: auto;
    gap: 0.65rem;
  }
  .hero__content {
    width: 100%;
    max-width: 33rem;
    margin-inline: auto;
    display: grid;
    justify-items: stretch;
    text-align: center;
  }
  .hero__content::before {
    top: -18px;
    inset-inline-start: auto;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translateX(-50%);
  }
  .hero__pill {
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 0.8rem;
    padding: 0.48rem 0.76rem;
    max-width: min(100%, 21rem);
    font-size: 0.7rem;
  }
  .hero__phones {
    display: grid;
    min-height: 470px;
    margin-top: 1.2rem;
  }
  .hero__phones::before {
    inset: 10% 3% 10% 5%;
    border-radius: 32px 32px 96px 32px;
    background-size:
      100% 100%,
      300px auto;
    transform: rotate(-5deg);
  }
  .hero__phones::after {
    width: 190px;
    height: 190px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .hero__phone-glow {
    inset: 16% 8% 8%;
    filter: blur(48px);
  }
  .hero__hand {
    width: 320px;
    bottom: -76px;
    transform: translateX(-55%) rotate(9deg);
    opacity: 0.66;
  }
  .hero__title {
    font-size: clamp(2.45rem, 10.4vw, 3.45rem);
    line-height: 1.14;
    margin-bottom: 0.45rem;
  }
  .hero__title-en {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
  }
  .hero__lede {
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 1rem;
    max-width: 29ch;
  }
  .hero__cta {
    width: 100%;
    max-width: 100%;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding-inline: 0;
  }
  .hero__cta .store-btn {
    display: inline-flex;
    width: min(100%, 258px) !important;
    max-width: 258px;
    min-width: 0;
    height: 52px !important;
    min-height: 52px;
    max-height: 52px;
    border-radius: 22px;
    justify-content: center;
    gap: 0.55rem;
    padding: 0 0.88rem;
    aspect-ratio: auto !important;
    box-shadow:
      0 16px 28px -24px rgba(28, 88, 66, 0.52),
      0 1px 0 rgba(255, 255, 255, 0.14) inset;
  }
  .hero__cta .store-btn__icon {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
  }
  .hero__cta .store-btn__txt {
    display: grid;
    gap: 0;
    justify-items: center;
    text-align: center;
    line-height: 1.02;
  }
  .hero__cta .store-btn__txt small {
    font-family: var(--ff-ar-ui);
    font-size: 0.43rem;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.7);
  }
  .hero__cta .store-btn__txt b {
    font-family: var(--ff-ar-ui);
    font-size: 0.78rem;
    color: #ffffff;
    letter-spacing: -0.01em;
  }
  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    margin-top: 0.1rem;
    padding-top: 0;
  }
  .hero__meta-item {
    min-width: 0;
    padding: 0.65rem 0.4rem 0.55rem;
    border-radius: 18px;
    text-align: center;
  }
  .hero__meta-item b {
    font-size: 1.02rem;
  }
  .hero__meta-item small {
    font-size: 0.62rem;
    line-height: 1.3;
  }
  .hero__rating {
    justify-content: center;
    gap: 0.18rem;
    flex-wrap: wrap;
  }
  .hero__stars {
    gap: 1px;
  }
  .hero__caption {
    min-width: min(100%, 250px);
    padding: 0.68rem 0.85rem;
    gap: 0.7rem;
  }
  .hero__caption-idx {
    font-size: 1.2rem;
  }
  .hero__caption-ar {
    font-size: 0.92rem;
  }
  .hero__caption-en {
    font-size: 0.64rem;
  }

  /* Section heads */
  .section-head h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .section-head .lede {
    font-size: 1rem;
  }
  .section {
    padding-block: 3.5rem;
  }

  /* Trust band */
  .trust {
    padding-block: 1.5rem;
  }
  .trust__wrap {
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .trust__label {
    width: 100%;
    text-align: center;
    font-size: 0.65rem;
  }
  .trust__items {
    gap: 1.25rem;
    justify-content: center;
  }
  .trust__item {
    font-size: 0.9rem;
    gap: 0.35rem;
  }
  .trust__item svg {
    width: 16px;
    height: 16px;
  }

  /* Bento — single column with smart heights */
  .features__bento {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }
  .bento {
    padding: 1.5rem;
    min-height: 0;
  }
  .bento--hero,
  .bento--tall,
  .bento--wide,
  .bento--mid {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }
  .bento__title {
    font-size: 1.35rem;
  }
  .bento__desc {
    font-size: 0.92rem;
  }
  .bento__viz-quran {
    font-size: 1.1rem;
    padding: 0.75rem;
  }
  .bento__viz-wave {
    height: 50px;
  }
  .bento__viz-prayer {
    font-size: 0.85rem;
  }

  /* Deep dive */
  .deepdive {
    margin-top: 0.9rem;
  }
  .deepdive::before {
    background-size:
      360px auto,
      auto,
      auto;
    opacity: 0.2;
  }
  .deepdive::after {
    opacity: 0.66;
  }
  .deepdive__head {
    margin-bottom: 0.95rem;
  }
  .deepdive__head h2 {
    max-width: 10.5ch;
  }
  .deepdive__lede-intro {
    max-width: 26rem;
    font-size: 0.9rem;
    line-height: 1.62;
  }
  .deepdive__preview {
    gap: 0;
    width: 100%;
    overflow: hidden;
  }
  .deepdive__visual--carousel {
    min-height: 28.7rem;
    padding: 1.15rem 0 1rem;
  }
  .deepdive__carousel {
    min-height: 23.2rem;
  }
  .deepdive__slide-phone .phone {
    width: clamp(168px, 49vw, 198px);
    height: clamp(346px, 102vw, 410px);
  }
  .deepdive__slide[data-offset="0"] {
    transform: translate(-50%, -50%) translateY(14px);
  }
  .deepdive__slide[data-offset="-1"] {
    transform: translate(-50%, -50%) translateX(-94px) translateY(36px)
      rotateY(24deg) rotateZ(-4deg);
  }
  .deepdive__slide[data-offset="1"] {
    transform: translate(-50%, -50%) translateX(94px) translateY(36px)
      rotateY(-24deg) rotateZ(4deg);
  }
  .deepdive__slide[data-offset="-2"] {
    transform: translate(-50%, -50%) translateX(-145px) translateY(68px)
      rotateY(28deg) rotateZ(-4deg);
    opacity: 0.12;
  }
  .deepdive__slide[data-offset="2"] {
    transform: translate(-50%, -50%) translateX(145px) translateY(68px)
      rotateY(-28deg) rotateZ(4deg);
    opacity: 0.12;
  }
  .deepdive__slide-label {
    min-height: 32px;
    font-size: 0.69rem;
    padding-inline: 0.78rem;
  }
  .deepdive__details {
    width: min(100%, 36rem);
    margin-top: -3.25rem;
    padding: 0.92rem 0.82rem 0.88rem;
    border-radius: 22px;
    background: linear-gradient(
      180deg,
      rgba(250, 245, 235, 0.95),
      rgba(243, 234, 213, 0.92)
    );
    box-shadow:
      0 26px 48px -34px rgba(2, 14, 10, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(16px);
  }
  .deepdive__details::before {
    height: 64px;
  }
  .deepdive__eyebrow {
    margin-bottom: 0.48rem;
  }
  .deepdive__title {
    font-size: 1.26rem;
    margin-bottom: 0.42rem;
  }
  .deepdive__desc {
    font-size: 0.84rem;
    line-height: 1.58;
    margin-bottom: 0.65rem;
  }
  .deepdive__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }
  .deepdive__highlight {
    padding: 0.56rem 0.6rem;
    gap: 0.45rem;
    border-radius: 14px;
    font-size: 0.76rem;
    line-height: 1.4;
    box-shadow: none;
  }
  .deepdive__highlight-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }
  .deepdive__actions {
    margin-top: 0.7rem;
  }
  .deepdive__cta {
    width: auto;
    min-width: 0;
    justify-content: center;
    --pad-y: 0.78rem;
    --pad-x: 1.25rem;
    font-size: 0.92rem;
  }

  /* Quran */
  .quran__grid {
    gap: 1.5rem;
  }
  .quran__preview {
    padding: 1.25rem;
  }
  .quran__spotlight-shell {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 0.82rem;
    padding: 0.8rem;
    border-radius: 18px;
  }
  .quran__spotlight-media {
    min-height: 180px;
    border-radius: 14px;
  }
  .quran__spotlight-badge {
    inset-inline-start: 0.5rem;
    bottom: 0.5rem;
    padding: 0.28rem 0.48rem;
    font-size: 0.62rem;
  }
  .quran__spotlight-name {
    font-size: 1.35rem;
  }
  .quran__spotlight-note {
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .quran__ayahs {
    font-size: 1.05rem;
    line-height: 2.15;
  }
  .quran__surah-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .quran__surah-name {
    font-size: 1.45rem;
  }
  .quran__bismillah {
    font-size: 1.2rem;
  }

  /* Showcase */
  .showcase::before {
    background-size:
      360px auto,
      auto,
      auto;
    opacity: 0.22;
  }
  .showcase::after {
    opacity: 0.68;
  }
  .showcase__stage {
    gap: 0.5rem;
    padding: 0.95rem 0.7rem;
    border-radius: 22px;
  }
  .showcase__stage::before {
    background-size: 220px auto;
    opacity: 0.07;
  }
  .showcase__phone--side {
    display: none;
  }
  .showcase__caption {
    margin-top: 1.15rem;
    padding: 0.9rem 0.85rem;
    border-radius: 14px;
  }

  /* Audio */
  .audio__grid {
    gap: 1.5rem;
  }
  .reciters {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .reciter {
    padding: 0.8rem;
  }
  .reciter__avatar {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .reciter__name {
    font-size: 1rem;
  }

  /* Prayer */
  .prayer__grid {
    gap: 1.5rem;
  }
  .prayer-card {
    padding: 1.5rem;
  }
  .prayer__direction {
    margin-top: 0.85rem;
  }
  .prayer-card__next-time {
    font-size: 3rem;
  }
  .prayer-card__next-name {
    font-size: 1.6rem;
  }
  .prayer-row {
    padding: 0.55rem 0.65rem;
    grid-template-columns: 24px 1fr auto auto;
    gap: 0.5rem;
  }
  .prayer-row__name {
    font-size: 1.05rem;
  }
  .prayer-row__time {
    font-size: 1.05rem;
  }
  .prayer-row__status {
    font-size: 0.55rem;
  }

  .qibla {
    width: 200px;
    height: 200px;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .review {
    padding: 1.25rem;
  }
  .review__text {
    font-size: 1rem;
  }

  /* Stats */
  .stats {
    padding-block: 3.5rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat {
    padding: 0.5rem;
  }
  .stat__num {
    font-size: 2.4rem;
  }
  .stat__label {
    font-size: 1rem;
  }

  /* FAQ */
  .faq-item__btn {
    padding: 1rem 1.1rem;
    font-size: 1rem;
    gap: 0.65rem;
  }
  .faq-item__icon {
    width: 24px;
    height: 24px;
  }
  .faq-item__body p {
    padding: 0 1.1rem 1rem;
    font-size: 0.92rem;
  }

  /* Download v2 */
  .download-v2 {
    padding-block: 3.5rem;
  }
  .download-v2__inner {
    width: calc(100% - 1.25rem);
  }
  .download-v2__panel {
    min-height: 0;
  }
  .download-v2__title {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .download-v2__lede {
    font-size: 0.95rem;
  }
  .download-v2__stores {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .download-v2__stores .dl-pill {
    width: 100%;
  }
  .download-v2__stores .dl-pill:last-child {
    grid-column: auto;
  }
  .dl-pill {
    padding: 0.85rem 1rem;
  }
  .dl-pill__icon {
    width: 40px;
    height: 40px;
  }
  .dl-pill__txt b {
    font-size: 0.92rem;
  }
  .dl-pill__txt small {
    font-size: 0.68rem;
  }
  .download-v2__visual {
    min-height: 410px;
  }
  .download-v2__hand {
    width: 330px;
    bottom: -88px;
  }
  .download-v2__phone .phone {
    width: 262px;
    height: 540px;
  }

  /* Footer */
  .footer {
    padding-block: 2.5rem 1.5rem;
  }
  .footer__grid {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer__brand {
    gap: 0.75rem;
  }
  .footer__bottom {
    font-size: 0.75rem;
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.25rem);
  }
  .nav__wrap {
    width: min(100% - 1.25rem, var(--container));
    gap: 0.45rem;
  }
  .nav__brand {
    left: 50%;
  }
  .nav__mobile-download {
    width: 36px;
    height: 36px;
    padding: 0;
    justify-content: center;
  }
  .nav__mobile-download span {
    display: none;
  }
  .nav__logo {
    width: 132px;
    height: 42px;
  }
  .nav__drawer {
    width: min(92vw, 340px);
    padding-top: calc(32px + 0.75rem);
  }
  .nav__drawer-kicker {
    font-size: 0.72rem;
  }
  .hero__hand {
    width: 320px;
    bottom: -82px;
    transform: translateX(-55%) rotate(10deg);
    opacity: 0.58;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
  }
  .hero__cta .store-btn {
    width: min(100%, 238px) !important;
    max-width: 238px;
    min-height: 48px;
  }
  .hero__cta .store-btn__txt b {
    font-size: 0.74rem;
  }
  .hero__meta {
    gap: 0.35rem;
  }
  .hero__meta-item {
    flex: 1;
    min-width: 90px;
    padding: 0.58rem 0.35rem 0.5rem;
  }
  .hero__meta-item b {
    font-size: 0.95rem;
  }
  .hero__meta-item small {
    font-size: 0.56rem;
  }
  .download-v2__inner {
    width: calc(100% - 0.9rem);
  }
  .download-v2__visual {
    min-height: 380px;
  }
  .download-v2__hand {
    width: 296px;
    bottom: -76px;
    transform: translateX(-58%) rotate(8deg);
    opacity: 0.68;
  }
  .download-v2__phone .phone {
    width: 240px;
    height: 495px;
  }
  .quran__spotlight {
    gap: 0.58rem;
  }
  .quran__spotlight-shell {
    grid-template-columns: 96px minmax(0, 1fr);
    text-align: start;
    justify-items: stretch;
    padding: 0.7rem;
    border-radius: 16px;
    gap: 0.68rem;
  }
  .quran__spotlight-copy {
    justify-items: start;
    align-content: center;
  }
  .quran__spotlight-media {
    min-height: 132px;
    border-radius: 12px;
  }
  .quran__spotlight-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }
  .quran__spotlight-name {
    font-size: 1.08rem;
  }
  .quran__spotlight-meta {
    justify-content: flex-start;
    font-size: 0.66rem;
    gap: 0.28rem;
  }
  .quran__spotlight-note {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.42;
  }
  .quran__spotlight-stats {
    justify-content: flex-start;
    gap: 0.3rem;
  }
  .quran__spotlight-stats span {
    font-size: 0.62rem;
    padding: 0.28rem 0.46rem;
  }
  .quran__spotlight-badge {
    inset-inline-start: 0.42rem;
    bottom: 0.42rem;
    padding: 0.24rem 0.38rem;
    font-size: 0.58rem;
  }
  .deepdive__visual--carousel {
    min-height: 24.9rem;
    padding: 1rem 0 0.85rem;
  }
  .deepdive__carousel {
    min-height: 20.6rem;
  }
  .deepdive__slide-phone .phone {
    width: clamp(154px, 44vw, 176px);
    height: clamp(318px, 90vw, 364px);
  }
  .deepdive__slide[data-offset="0"] {
    transform: translate(-50%, -50%) translateY(16px);
  }
  .deepdive__slide[data-offset="-1"] {
    transform: translate(-50%, -50%) translateX(-76px) translateY(34px)
      rotateY(20deg) rotateZ(-3deg);
  }
  .deepdive__slide[data-offset="1"] {
    transform: translate(-50%, -50%) translateX(76px) translateY(34px)
      rotateY(-20deg) rotateZ(3deg);
  }
  .deepdive__slide[data-offset="-2"] {
    transform: translate(-50%, -50%) translateX(-112px) translateY(62px)
      rotateY(24deg) rotateZ(-4deg);
    opacity: 0.08;
  }
  .deepdive__slide[data-offset="2"] {
    transform: translate(-50%, -50%) translateX(112px) translateY(62px)
      rotateY(-24deg) rotateZ(4deg);
    opacity: 0.08;
  }
  .deepdive__slide-label {
    min-height: 30px;
    padding: 0.38rem 0.72rem;
    font-size: 0.62rem;
  }
  .deepdive__details {
    margin-top: -2.9rem;
    padding: 0.82rem 0.72rem 0.76rem;
    border-radius: 20px;
  }
  .deepdive__eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .deepdive__title {
    font-size: 1.12rem;
  }
  .deepdive__desc {
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 0.55rem;
  }
  .deepdive__highlights {
    gap: 0.34rem;
  }
  .deepdive__highlight {
    padding: 0.48rem 0.48rem;
    gap: 0.34rem;
    border-radius: 12px;
    font-size: 0.68rem;
  }
  .deepdive__highlight-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }
  .deepdive__cta {
    --pad-y: 0.7rem;
    --pad-x: 1.05rem;
    font-size: 0.84rem;
  }
  .hero__meta {
    gap: 0.35rem;
  }
}

/* Larger touch targets */
@media (pointer: coarse) {
  .btn,
  .dl-pill,
  .faq-item__btn,
  .deepdive__nav-btn,
  .reciter__play {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__menu-icon span,
  .nav__drawer,
  .nav__drawer-backdrop,
  .nav__drawer-link {
    transition: none !important;
  }
}
