@font-face {
  font-family: "RunakiSorani";
  src: url("./assets/fonts/rabar_021.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "RunakiEnglish";
  src: url("./assets/fonts/Quicksand-Medium.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg-top: #ece8e1;
  --bg-bottom: #ebebf2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-soft: #f5f2ee;
  --surface-muted: #f2eef8;
  --ink: #141414;
  --muted: #6c665d;
  --line: rgba(31, 25, 19, 0.09);
  --line-strong: rgba(31, 25, 19, 0.16);
  --shadow: 0 34px 90px rgba(44, 35, 27, 0.12);
  --card-shadow: 0 18px 38px rgba(44, 35, 27, 0.08);
  --dark-shadow: 0 18px 34px rgba(14, 14, 14, 0.18);
  --warm: rgba(248, 216, 132, 0.42);
  --cool: rgba(203, 202, 255, 0.34);
  --grid-offset-x: 0px;
  --grid-offset-y: 0px;
  --orb-shift-y: 0px;
  --orb-rotate-scroll: 0deg;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  font-family: "RunakiSorani", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-aura {
  position: fixed;
  inset: auto;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(84px);
  pointer-events: none;
  z-index: -2;
}

.page-aura--warm {
  top: -10rem;
  left: -6rem;
  background: rgba(244, 213, 137, 0.28);
}

.page-aura--cool {
  right: -8rem;
  bottom: -12rem;
  background: rgba(200, 200, 255, 0.26);
}

.site-grid,
.site-orb,
.cursor-glow {
  pointer-events: none;
}

.site-grid {
  position: fixed;
  inset: -18vh -12vw;
  z-index: -3;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(29, 23, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 23, 18, 0.055) 1px, transparent 1px);
  background-size: 4.4rem 4.4rem;
  transform: translate3d(var(--grid-offset-x), var(--grid-offset-y), 0);
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

.site-orb {
  position: fixed;
  top: 10%;
  right: 8%;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  opacity: 0.46;
  filter: blur(6px);
  transform: translate3d(0, var(--orb-shift-y), 0) rotate(var(--orb-rotate-scroll));
}

.site-orb::before,
.site-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.site-orb::before {
  background:
    conic-gradient(
      from 0deg,
      rgba(252, 238, 188, 0.9),
      rgba(224, 223, 255, 0.9),
      rgba(245, 214, 136, 0.74),
      rgba(252, 238, 188, 0.9)
    );
  animation: orbSpin 28s linear infinite;
}

.site-orb::after {
  inset: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
  filter: blur(24px);
}

.cursor-glow {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-scale: 1;
  position: fixed;
  top: var(--cursor-y);
  left: var(--cursor-x);
  z-index: 12;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  opacity: 0;
  filter: blur(50px);
  background:
    radial-gradient(circle, rgba(248, 216, 132, 0.32), rgba(203, 202, 255, 0.18) 42%, transparent 70%);
  transform: translate(-50%, -50%) scale(var(--cursor-scale));
  transition: opacity 280ms ease;
  mix-blend-mode: screen;
}

.cursor-glow.is-visible {
  opacity: 0.85;
}

.site-shell {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 2rem));
  margin: 1rem auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.84)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 38%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.container {
  width: min(1320px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  padding: 1.5rem 0 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.brand__icon img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.brand__text strong,
.brand__text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__text strong,
.footer-brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.store-badge:hover,
.screen-control:hover {
  transform: translateY(-2px);
}

.button:active,
.store-badge:active,
.screen-control:active,
.screen-thumb:active,
.mobile-story__slide:active {
  transform: scale(0.98);
}

.button--dark {
  color: white;
  background: #101010;
  box-shadow: var(--dark-shadow);
}

.nav-download {
  min-height: 2.95rem;
  padding-inline: 1.3rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface-strong);
  box-shadow: var(--card-shadow);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-toggle span {
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  position: relative;
  isolation: isolate;
  padding-bottom: 1.5rem;
}

.section {
  position: relative;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  padding: 0 0 5.2rem;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 1.3rem 0 5rem;
}

.section-marquee {
  position: absolute;
  top: 0.6rem;
  left: -4rem;
  right: -4rem;
  z-index: 0;
  overflow: hidden;
  opacity: 0.38;
  pointer-events: none;
}

.section-marquee--hero {
  top: 6rem;
  opacity: 0.48;
}

.section-marquee--soft {
  opacity: 0.3;
}

.section-marquee__track {
  display: flex;
  gap: 2.8rem;
  width: max-content;
  transform: translate3d(var(--marquee-shift, 0px), 0, 0);
  will-change: transform;
}

.section-marquee span {
  font-family: "RunakiEnglish", "RunakiSorani", sans-serif;
  font-size: clamp(4rem, 12vw, 8.6rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: rgba(22, 18, 15, 0.09);
  text-transform: uppercase;
  text-wrap: nowrap;
}

.section-divider {
  --wave-scale: 1;
  position: relative;
  z-index: 1;
  height: 5.6rem;
  margin: -1.6rem 0 1.8rem;
  pointer-events: none;
  opacity: 0.72;
}

.section-divider--reverse {
  --wave-scale: -1;
}

.section-divider--compact {
  height: 4.4rem;
  margin-top: -1rem;
}

.section-divider svg {
  width: 122%;
  height: 100%;
  margin-right: -11%;
  transform: translate3d(var(--wave-shift, 0px), var(--wave-lift, 0px), 0) scaleX(var(--wave-scale));
  transform-origin: center;
}

.section-divider path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.section-divider path:first-child {
  stroke: rgba(27, 21, 17, 0.18);
  stroke-width: 1.6;
}

.section-divider path:last-child {
  stroke: rgba(141, 133, 194, 0.16);
  stroke-width: 1.2;
}

.hero-panel {
  position: relative;
  min-height: 54rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 2.35rem;
  background:
    radial-gradient(circle at 40% 18%, rgba(245, 214, 136, 0.22), transparent 18%),
    radial-gradient(circle at 68% 22%, rgba(201, 201, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 70px rgba(44, 35, 27, 0.08);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(34, 28, 22, 0.05);
  pointer-events: none;
}

.hero-panel__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-panel__lines path,
.hero-panel__lines rect {
  fill: none;
  stroke: rgba(49, 42, 35, 0.12);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 53rem;
  margin: 7rem auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0 1rem;
  border: 1px solid rgba(24, 20, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(44, 35, 27, 0.05);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow--soft {
  background: rgba(246, 242, 237, 0.96);
}

.eyebrow--small {
  min-height: 2.2rem;
  font-size: 0.76rem;
}

.hero-copy h1,
.section-heading h2,
.journey-head h2,
.reviews-panel__intro h2,
.section-heading--stack h2,
.cta-panel__copy h2,
.intro-layout__headline h2,
.screen-showcase__copy h3 {
  margin: 1rem 0 0;
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 6.4vw, 5.8rem);
}

.hero-copy p,
.section-heading p,
.journey-head p,
.reviews-panel__intro p,
.screen-showcase__copy p,
.cta-panel__copy p,
.intro-layout__note,
.feature-card p,
.step-card p,
.testimonial-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-copy p {
  max-width: 41rem;
  margin: 1.15rem auto 0;
  font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-metric {
  min-width: 8.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--card-shadow);
}

.hero-metric strong,
.hero-metric span {
  display: block;
}

.hero-metric strong {
  font-family: "RunakiEnglish", "RunakiSorani", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-metric span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.motion-float,
.motion-device,
.motion-layer {
  --base-transform: none;
  --motion-y: 0px;
  --motion-rotate-angle: 0deg;
  --motion-scale: 1;
  transform: var(--base-transform) translate3d(0, var(--motion-y), 0) rotate(var(--motion-rotate-angle)) scale(var(--motion-scale));
  will-change: transform;
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-lift: 0px;
  --tilt-highlight: 0;
  --tilt-glow-x: 50%;
  --tilt-glow-y: 50%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: calc(var(--tilt-highlight) * 0.44);
  pointer-events: none;
  background: radial-gradient(circle at var(--tilt-glow-x) var(--tilt-glow-y), rgba(255, 255, 255, 0.42), transparent 42%);
  mix-blend-mode: screen;
  transition: opacity 240ms ease;
}

.mask-reveal {
  --mask-radius: 2rem;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round var(--mask-radius));
  filter: saturate(1);
}

html.mask-enhanced .mask-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.94);
  clip-path: inset(0 0 100% 0 round var(--mask-radius));
  filter: saturate(0.88);
  transition:
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

html.mask-enhanced .mask-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0 round var(--mask-radius));
  filter: saturate(1);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 1.25rem;
  background: #101010;
  color: white;
  text-decoration: none;
  box-shadow: var(--dark-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.store-badge--soft {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--card-shadow);
}

.store-badge__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.store-badge--soft .store-badge__icon {
  background: rgba(16, 16, 16, 0.05);
}

.store-badge__icon img {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
}

.store-badge__icon--text {
  font-family: "RunakiEnglish", sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.store-badge__text {
  display: grid;
  gap: 0.08rem;
  text-align: right;
}

.store-badge__text small {
  opacity: 0.72;
  font-size: 0.72rem;
  font-weight: 800;
}

.store-badge__text strong {
  font-family: "RunakiEnglish", "RunakiSorani", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hero-stage {
  position: relative;
  height: 29rem;
  margin-top: 2.25rem;
}

.hero-stage__ring {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(34, 28, 22, 0.08);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-stage__ring--one {
  bottom: 5.5rem;
  width: min(28rem, 82%);
  height: 13rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3), transparent 58%);
}

.hero-stage__ring--two {
  bottom: 2.5rem;
  width: min(38rem, 94%);
  height: 17rem;
  border-style: dashed;
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.9;
}

.hero-glow--warm {
  top: 4.5rem;
  left: 50%;
  width: 18rem;
  height: 18rem;
  transform: translateX(-72%);
  background: var(--warm);
}

.hero-glow--cool {
  right: 50%;
  bottom: 3rem;
  width: 16rem;
  height: 16rem;
  transform: translateX(78%);
  background: var(--cool);
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.46rem 0.78rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-shadow);
  font-size: 0.82rem;
  font-weight: 900;
}

.float-chip__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(31, 25, 19, 0.05);
}

.float-chip__icon img {
  width: 1.12rem;
  height: 1.12rem;
  object-fit: contain;
}

.float-chip--quran {
  top: 3.3rem;
  left: 7%;
}

.float-chip--zikr {
  top: 3.6rem;
  right: 9%;
}

.float-chip--books {
  top: 12rem;
  left: 17%;
}

.float-chip--more {
  top: 13.3rem;
  right: 17%;
}

.hero-device {
  --base-transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(15.8rem, calc(100% - 2rem));
}

.hero-device__shadow {
  position: absolute;
  right: 12%;
  left: 12%;
  bottom: 0.6rem;
  height: 4.5rem;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(52, 39, 24, 0.28), transparent 68%);
  filter: blur(16px);
}

.hero-device__platform {
  position: absolute;
  left: 50%;
  bottom: -1.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
  transform: translateX(-50%);
}

.hero-device__platform span {
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.05);
  font-size: 0.76rem;
  font-weight: 900;
}

.phone-shell {
  --phone-screen-left: 4.3824%;
  --phone-screen-top: 1.7698%;
  --phone-screen-right: 3.9715%;
  --phone-screen-bottom: 1.5886%;
  position: relative;
  isolation: isolate;
  aspect-ratio: 3651 / 7176;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 32px 60px rgba(16, 16, 16, 0.26));
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: center / contain no-repeat url("./pictures/frame-iphone.png");
  pointer-events: none;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 13% / 6.5%;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.phone-shell img {
  position: absolute;
  inset:
    var(--phone-screen-top)
    var(--phone-screen-right)
    var(--phone-screen-bottom)
    var(--phone-screen-left);
  z-index: 1;
  width: calc(100% - var(--phone-screen-left) - var(--phone-screen-right));
  height: calc(100% - var(--phone-screen-top) - var(--phone-screen-bottom));
  max-width: none;
  object-fit: cover;
  border-radius: 11% / 5.5%;
  background: #fff;
}

.phone-shell.mask-reveal {
  --mask-radius: 0.2rem;
}

.phone-shell__speaker {
  display: none;
}

.phone-shell--hero {
  width: 100%;
}

.phone-shell--feature {
  width: min(100%, 13.5rem);
}

.intro-layout {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
}

.intro-layout__note {
  margin: 0;
  max-width: 27rem;
  font-size: 1rem;
}

.intro-layout__headline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.section-pin {
  min-width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  color: white;
  box-shadow: var(--dark-shadow);
  font-family: "RunakiEnglish", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.intro-layout__headline h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 14ch;
}

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

.section-heading h2,
.journey-head h2,
.reviews-panel__intro h2,
.section-heading--stack h2,
.cta-panel__copy h2,
.screen-showcase__copy h3 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

.section-heading p {
  max-width: 29rem;
  margin: 0;
}

.section-heading--stack {
  display: grid;
  justify-items: center;
  gap: 0.1rem;
  text-align: center;
}

.section-heading--stack p {
  max-width: 36rem;
  margin: 0.9rem auto 0;
}

.feature-grid,
.testimonial-grid,
.faq-list {
  display: grid;
  gap: 1.1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1.85rem;
  padding: 1.45rem;
  box-shadow: var(--card-shadow);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%);
  pointer-events: none;
}

.feature-card__serial {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.08);
  font-family: "RunakiEnglish", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.feature-card--lilac {
  background: linear-gradient(180deg, #efeaff, #e7e1ff);
}

.feature-card--sand {
  background: linear-gradient(180deg, #f8f3ea, #efe8de);
}

.feature-card--mist {
  background: linear-gradient(180deg, #eef2f5, #e4eaee);
}

.feature-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(31, 25, 19, 0.06);
  margin-top: 3rem;
}

.feature-card__badge img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.feature-card__badge span {
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 1rem 0 0;
  font-size: 1.55rem;
  line-height: 1.22;
  font-weight: 900;
  max-width: 12ch;
}

.feature-card p {
  max-width: 18rem;
  margin: 0.8rem 0 0;
}

.feature-card__mockup {
  position: absolute;
  right: 0.8rem;
  left: 0.8rem;
  bottom: 0.9rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.feature-card__mockup .phone-shell--feature {
  box-shadow: 0 22px 36px rgba(36, 28, 21, 0.14);
}

.feature-card__mockup .phone-shell--feature.mask-reveal {
  --mask-radius: 2.4rem;
}

.feature-card--lilac .feature-card__mockup .phone-shell--feature {
  transform: rotate(-12deg) translateY(1rem);
}

.feature-card--sand .feature-card__mockup .phone-shell--feature {
  transform: rotate(10deg) translateY(0.5rem);
}

.feature-card--mist .feature-card__mockup .phone-shell--feature {
  transform: rotate(-6deg) translateY(0.8rem);
}

.journey-head {
  max-width: 48rem;
}

.journey-head p {
  margin: 1rem 0 0;
}

.journey-layout {
  display: grid;
  align-items: start;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  margin-top: 2rem;
}

.mobile-story {
  display: none;
}

.step-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card {
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1.5rem;
  padding: 1.2rem;
  background: rgba(246, 242, 250, 0.92);
  box-shadow: var(--card-shadow);
}

.step-card:nth-child(2n) {
  background: rgba(248, 245, 238, 0.96);
}

.step-card__number {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.08);
  font-family: "RunakiEnglish", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.step-card h3 {
  margin: 1rem 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.step-card p {
  margin: 0.65rem 0 0;
}

.screen-showcase {
  position: relative;
  display: grid;
  gap: 1.2rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) 14.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(247, 216, 138, 0.18), transparent 22%),
    radial-gradient(circle at 85% 80%, rgba(200, 200, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 0.94));
  box-shadow: var(--card-shadow);
}

.screen-showcase::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(31, 25, 19, 0.08);
  border-radius: 1.4rem;
  pointer-events: none;
}

.screen-showcase__copy h3 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  max-width: 10ch;
}

.screen-showcase__copy,
.screen-showcase__device {
  position: relative;
  z-index: 1;
}

.screen-showcase__copy p {
  margin: 0.9rem 0 0;
}

.screen-showcase__controls,
.screen-carousel__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.screen-showcase__controls {
  margin-top: 1.45rem;
}

.screen-control {
  min-height: 2.95rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--card-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.screen-showcase__device {
  display: flex;
  justify-content: center;
  padding-block: 0.5rem;
}

.phone-shell--spotlight {
  width: min(100%, 13.25rem);
}

.screen-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.screen-thumbs {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.screen-thumbs::-webkit-scrollbar {
  display: none;
}

.screen-thumb {
  min-width: 4.9rem;
  padding: 0.35rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--card-shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.screen-thumb img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 0.75rem;
}

.screen-thumb span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.screen-thumb.is-active {
  border-color: rgba(16, 16, 16, 0.2);
  background: rgba(244, 240, 250, 0.96);
  transform: translateY(-2px);
}

.mobile-story__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.mobile-story__track {
  display: flex;
  gap: 0.9rem;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mobile-story__slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(247, 216, 138, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(200, 200, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 240, 0.96));
  box-shadow: var(--card-shadow);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.mobile-story__slide::before {
  content: "";
  position: absolute;
  inset: 0.85rem;
  border: 1px dashed rgba(31, 25, 19, 0.08);
  border-radius: 1.15rem;
  pointer-events: none;
}

.mobile-story__meta,
.mobile-story__copy,
.mobile-story__device,
.mobile-story__footer {
  position: relative;
  z-index: 1;
}

.mobile-story__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.mobile-story__count {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.08);
  font-family: "RunakiEnglish", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-story__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(31, 25, 19, 0.06);
  font-size: 0.74rem;
  font-weight: 900;
}

.mobile-story__copy {
  margin-top: 0.95rem;
  text-align: center;
}

.mobile-story__copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.14;
  font-weight: 900;
}

.mobile-story__copy p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.mobile-story__device {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.phone-shell--story {
  width: min(100%, 12rem);
}

.mobile-story__footer {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.mobile-story__link {
  width: 100%;
}

.mobile-story__controls {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.mobile-story__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-story__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.mobile-story__dot {
  width: 0.68rem;
  height: 0.68rem;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.14);
  transition: transform 220ms ease, background-color 220ms ease;
}

.mobile-story__dot.is-active {
  background: #101010;
  transform: scale(1.18);
}

.mobile-story__slide.is-active {
  border-color: rgba(16, 16, 16, 0.12);
  box-shadow: 0 24px 48px rgba(44, 35, 27, 0.12);
}

.mobile-story__slide.is-active .phone-shell--story {
  animation: spotlightBob 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-dot {
  width: 0.78rem;
  height: 0.78rem;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.14);
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.screen-dot.is-active {
  background: #101010;
  transform: scale(1.12);
}

.reviews-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: start;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(242, 239, 235, 0.96);
}

.reviews-panel__intro,
.testimonial-grid {
  position: relative;
  z-index: 1;
}

.reviews-panel__orb {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.65;
  pointer-events: none;
}

.reviews-panel__orb--warm {
  top: -7rem;
  left: -3rem;
  background: rgba(247, 216, 138, 0.26);
}

.reviews-panel__orb--cool {
  right: -5rem;
  bottom: -8rem;
  background: rgba(200, 200, 255, 0.22);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(31, 25, 19, 0.07);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.testimonial-card__quote {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  color: rgba(16, 16, 16, 0.1);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 225, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 900;
}

.testimonial-card__meta strong,
.testimonial-card__meta span {
  display: block;
}

.testimonial-card__meta strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.testimonial-card__meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-card__stars {
  margin-top: 0.9rem;
  color: #f0b429;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  margin: 0.9rem 0 0;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 1.5rem;
  padding: 1.05rem 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--card-shadow);
}

.faq-item[open] {
  background: rgba(246, 242, 250, 0.96);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 900;
}

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

.faq-item__symbol {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 16, 0.08);
  transition: transform 220ms ease;
}

.faq-item[open] .faq-item__symbol {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.cta-panel {
  position: relative;
  display: grid;
  align-items: center;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.78fr);
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 214, 136, 0.2), transparent 22%),
    radial-gradient(circle at 86% 78%, rgba(200, 200, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(244, 240, 250, 0.96), rgba(248, 245, 238, 0.98));
  box-shadow: var(--card-shadow);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(31, 25, 19, 0.06);
  border-radius: 1.5rem;
  pointer-events: none;
}

.cta-panel__copy {
  position: relative;
  z-index: 1;
}

.cta-panel__copy h2 {
  max-width: 11ch;
}

.cta-panel__copy p {
  max-width: 34rem;
  margin: 1rem 0 0;
}

.cta-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.cta-highlights span {
  min-height: 2.2rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(31, 25, 19, 0.08);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 900;
}

.cta-panel__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 24rem;
}

.cta-panel__visual::after {
  content: "";
  position: absolute;
  right: 12%;
  left: 12%;
  bottom: 1rem;
  height: 4rem;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(52, 39, 24, 0.22), transparent 68%);
  filter: blur(18px);
}

.phone-shell--cta {
  width: min(100%, 14.25rem);
  transform: rotate(14deg) translateY(1rem);
}

.site-footer {
  padding: 0 0 1.7rem;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-top {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.footer-brand__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.footer-brand__icon img {
  width: 1.65rem;
  height: 1.65rem;
}

.footer-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-bottom a,
.footer-bottom p {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--ink);
}

.footer-social a {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  color: white;
  text-decoration: none;
  font-family: "RunakiEnglish", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: var(--dark-shadow);
}

.footer-bottom {
  margin-top: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  --reveal-y: 28px;
  opacity: 0;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, calc(var(--reveal-y) + var(--hover-lift, 0px)), 0);
  filter: blur(10px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 820ms cubic-bezier(0.2, 0.9, 0.2, 1),
    filter 700ms ease,
    box-shadow 280ms ease;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  filter: blur(0);
}

.swap-shot {
  animation: fadeSwap 460ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover,
  .step-card:hover,
  .testimonial-card:hover,
  .faq-item:hover,
  .screen-showcase:hover,
  .cta-panel:hover {
    box-shadow: 0 26px 52px rgba(44, 35, 27, 0.12);
  }

  .tilt-card:hover {
    box-shadow: 0 30px 62px rgba(44, 35, 27, 0.14);
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hero-panel {
    min-height: 51rem;
  }

  .float-chip--quran,
  .float-chip--zikr {
    top: 4rem;
  }

  .float-chip--books,
  .float-chip--more {
    top: 12.8rem;
  }

  .feature-card {
    min-height: 27rem;
  }
}

@media (max-width: 1023px) {
  .site-grid {
    opacity: 0.3;
    background-size: 3.6rem 3.6rem;
  }

  .site-orb {
    top: 12%;
    right: 2%;
    width: 26rem;
    height: 26rem;
    opacity: 0.34;
  }

  .section-marquee {
    left: -2rem;
    right: -2rem;
  }

  .section-marquee span {
    font-size: clamp(3.4rem, 10vw, 6.2rem);
  }

  .section-divider {
    height: 4.4rem;
    margin: -1rem 0 1.2rem;
  }

  .intro-layout,
  .journey-layout,
  .reviews-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .journey-head {
    max-width: 40rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-panel {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-copy {
    max-width: 42rem;
    margin-top: 5rem;
    padding-inline: 1rem;
  }

  .hero-copy p {
    max-width: 34rem;
  }

  .hero-stage {
    height: auto;
    margin-top: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .hero-device {
    --base-transform: none;
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 14.5rem);
    margin-inline: auto;
  }

  .hero-device__shadow {
    bottom: 0.25rem;
  }

  .hero-device__platform {
    bottom: -1.35rem;
  }

  .float-chip--quran {
    top: 0.75rem;
    left: 1rem;
  }

  .float-chip--zikr {
    top: 0.75rem;
    right: 1rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

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

  .screen-showcase {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .screen-showcase__copy h3,
  .cta-panel__copy h2 {
    max-width: none;
  }

  .float-chip--books,
  .float-chip--more {
    display: none;
  }

  .reviews-panel,
  .cta-panel {
    padding: 1.6rem;
  }
}

@media (max-width: 767px) {
  .site-grid {
    inset: -14vh -18vw;
    opacity: 0.18;
    background-size: 3rem 3rem;
  }

  .site-orb {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 16%;
    width: 20rem;
    height: 20rem;
    opacity: 0.26;
    transform: translate3d(-50%, var(--orb-shift-y), 0) rotate(var(--orb-rotate-scroll));
  }

  .section-marquee {
    top: 0.2rem;
    left: -1rem;
    right: -1rem;
    opacity: 0.24;
  }

  .section-marquee--hero {
    top: 4.6rem;
    opacity: 0.28;
  }

  .section-marquee__track {
    gap: 1.25rem;
  }

  .section-marquee span {
    font-size: clamp(3rem, 16vw, 4.8rem);
    letter-spacing: 0.12em;
  }

  .section-divider {
    height: 3.3rem;
    margin: -0.8rem 0 1rem;
    opacity: 0.54;
  }

  .site-shell {
    width: calc(100% - 1rem);
    border-radius: 1.6rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .site-header {
    padding-top: 1rem;
  }

  .nav-shell {
    gap: 0.7rem;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.65rem;
  }

  .brand__icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.85rem;
  }

  .brand__icon img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .brand__text {
    gap: 0;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--card-shadow);
    z-index: 10;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-link,
  .nav-download {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding-bottom: 3.8rem;
  }

  .hero {
    padding-bottom: 3.8rem;
  }

  .hero-panel {
    min-height: auto;
    border-radius: 1.8rem;
    padding-inline: 0.9rem;
    padding-bottom: 1.6rem;
  }

  .hero-copy {
    margin-top: 3rem;
    max-width: 100%;
    padding-inline: 0.2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .hero-copy p {
    max-width: 28rem;
    font-size: 0.98rem;
  }

  .hero-stage {
    height: auto;
    margin-top: 1.4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-device {
    --base-transform: none;
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 14rem);
    margin-inline: auto;
  }

  .hero-device__shadow,
  .hero-panel__lines {
    display: none;
  }

  .hero-stage__ring,
  .hero-device__platform {
    display: none;
  }

  .hero-glow--warm {
    top: 2rem;
    width: 13rem;
    height: 13rem;
  }

  .hero-glow--cool {
    bottom: 4rem;
    width: 12rem;
    height: 12rem;
  }

  .float-chip {
    display: none;
  }

  .intro-layout__headline h2,
  .section-heading h2,
  .journey-head h2,
  .reviews-panel__intro h2,
  .section-heading--stack h2,
  .cta-panel__copy h2,
  .screen-showcase__copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .feature-grid,
  .step-grid,
  .testimonial-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-card h3,
  .intro-layout__headline h2 {
    max-width: none;
  }

  .intro-layout,
  .section-heading,
  .journey-head,
  .reviews-panel__intro,
  .section-heading--stack,
  .cta-panel__copy {
    text-align: center;
  }

  .intro-layout__headline {
    flex-direction: column;
    gap: 0.8rem;
  }

  .journey-layout--desktop {
    display: none;
  }

  .mobile-story {
    display: block;
    margin-top: 1.2rem;
  }

  .screen-showcase__controls,
  .screen-carousel__actions,
  .hero-actions,
  .cta-actions,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .screen-control,
  .button,
  .store-badge {
    width: 100%;
  }

  .screen-showcase,
  .reviews-panel,
  .cta-panel {
    padding: 1.15rem;
    border-radius: 1.5rem;
  }

  .feature-card {
    min-height: 0;
    padding: 1.2rem;
  }

  .feature-card__serial {
    top: 0.85rem;
    left: 0.85rem;
  }

  .feature-card__badge {
    margin-top: 2.45rem;
  }

  .feature-card__mockup {
    position: static;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    justify-content: center;
  }

  .feature-card__mockup .phone-shell--feature {
    width: min(100%, 11rem);
    transform: none !important;
  }

  .step-card,
  .testimonial-card,
  .faq-item {
    padding: 1rem;
  }

  .screen-showcase::before,
  .cta-panel::before,
  .reviews-panel__orb {
    display: none;
  }

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

  .store-badge__text {
    text-align: center;
  }

  .cta-highlights,
  .hero-metrics {
    justify-content: center;
  }

  .hero-metric {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
  }

  .cta-panel__visual {
    min-height: 16rem;
  }

  .phone-shell--cta {
    transform: none;
    width: min(100%, 15.5rem);
  }

  .footer-links,
  .footer-social {
    justify-content: center;
  }

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

@media (max-width: 479px) {
  .site-grid {
    opacity: 0.12;
    background-size: 2.6rem 2.6rem;
  }

  .site-orb {
    width: 16rem;
    height: 16rem;
    bottom: 18%;
    opacity: 0.2;
  }

  .section-marquee span {
    font-size: clamp(2.4rem, 18vw, 3.6rem);
  }

  .section-divider {
    height: 2.7rem;
    margin-bottom: 0.8rem;
  }

  .site-shell {
    width: calc(100% - 0.5rem);
    margin: 0.25rem auto;
    border-radius: 1.2rem;
  }

  .container {
    width: calc(100% - 1rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-copy p,
  .section-heading p,
  .journey-head p,
  .reviews-panel__intro p,
  .screen-showcase__copy p,
  .cta-panel__copy p {
    font-size: 0.94rem;
  }

  .store-badge {
    min-height: 3.65rem;
    padding-inline: 0.9rem;
  }

  .store-badge__text strong {
    font-size: 0.9rem;
  }

  .hero-device,
  .phone-shell--spotlight,
  .phone-shell--cta {
    width: min(100%, 13rem);
  }

  .feature-card {
    min-height: 0;
  }

  .hero-metric {
    flex-basis: 100%;
    min-width: 0;
    padding-inline: 0.8rem;
  }

  .hero-panel {
    padding-inline: 0.65rem;
  }

  .brand__text strong {
    font-size: 0.84rem;
  }

  .mobile-story__slide {
    padding: 0.9rem;
  }

  .mobile-story__copy h3 {
    font-size: 1.28rem;
  }

  .mobile-story__actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .motion-float,
  .motion-device,
  .motion-layer {
    transform: none !important;
  }

  .mask-reveal {
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
    transform: none !important;
  }

  .site-grid,
  .site-orb,
  .cursor-glow {
    display: none !important;
  }

  .section-marquee__track,
  .section-divider svg {
    transform: none !important;
  }

  .tilt-card::after {
    display: none !important;
  }
}

@keyframes orbSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeSwap {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spotlightBob {
  0% {
    transform: translateY(10px) scale(0.96);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}
