/*
  Ayaz Book - Salla stylesheet
  ملاحظة: لا توجد روابط صور داخل CSS حاليًا. روابط الصور داخل salla.js معلّق عليها بجملة SALLA IMAGE ويجب استبدال assets/ بروابط مباشرة من سلة.
  تم نسخ التنسيقات من experience.css بدون تعديل الملفات الأصلية.
*/

:root {
  --black: #050303;
  --ink: #0c0707;
  --panel: rgba(18, 9, 8, 0.72);
  --panel-strong: rgba(28, 10, 9, 0.86);
  --red: #b91414;
  --deep-red: #650b0b;
  --white: #f7f1eb;
  --muted: #b9aaa1;
  --line: rgba(247, 241, 235, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 48% 8%, rgba(185, 20, 20, 0.2), transparent 34%),
    linear-gradient(180deg, #030202 0%, #120806 48%, #050303 100%);
}

body.is-preloading {
  overflow: hidden;
}

body.is-preloading .skip-link,
body.is-preloading main,
body.is-preloading footer {
  visibility: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 28px);
  color: #f7f1eb;
  background: #000;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.42s ease;
}

.preloader::before {
  content: none;
}

.preloader::after {
  content: none;
}

.preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
  text-align: center;
}

.preloader-logo {
  width: min(920px, 90vw);
  max-width: 100%;
  max-height: 52vh;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: none;
  animation: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 92%,
    rgba(0, 0, 0, 0.72) 97%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 92%,
    rgba(0, 0, 0, 0.72) 97%,
    transparent 100%
  );
}

.preloader-percent {
  margin-top: clamp(16px, 2.5vw, 28px);
  font-size: clamp(21px, 1.9vw, 30px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(247, 241, 235, 0.92);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.preloader-progress {
  width: min(620px, 74vw);
  margin-top: clamp(14px, 1.8vw, 20px);
}

.preloader-track {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(247, 241, 235, 0.34);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.preloader-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #650b0b, #b91414, #ff6464);
  box-shadow: 0 0 14px rgba(185, 20, 20, 0.72);
  transition: width 0.08s linear;
}

.preloader-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff7ef;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 0 24px rgba(185, 20, 20, 0.95);
  transform: translate(-50%, -50%);
  transition: left 0.08s linear;
}

.preloader-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: rgba(247, 241, 235, 0.86);
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.08em;
}

.preloader-loading {
  margin: clamp(16px, 2vw, 22px) 0 0;
  color: rgba(247, 241, 235, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.28em;
}

body.has-premium-cursor,
body.has-premium-cursor a,
body.has-premium-cursor button {
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  inset-inline-start: 12px;
  top: 12px;
  z-index: 99;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
  transform: translateY(-140%);
}

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

.noise,
.cursor-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: -2;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.24) 0.7px,
    transparent 0.8px
  );
  background-size: 4px 4px;
  opacity: 0.22;
  mix-blend-mode: overlay;
}

.cursor-light {
  z-index: -3;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 28%),
    rgba(255, 248, 216, 0.13),
    rgba(255, 225, 132, 0.08) 10%,
    rgba(185, 20, 20, 0.2) 24%,
    transparent 36%
  );
  transition: background 0.18s ease;
}

.premium-cursor-trail,
.premium-cursor-dot,
.cursor-particle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.premium-cursor-trail {
  z-index: 80;
  width: 26px;
  height: 26px;
  background: radial-gradient(
    circle,
    rgba(255, 253, 235, 0.62) 0 12%,
    rgba(255, 238, 170, 0.28) 34%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
  translate: -50% -50%;
  filter: blur(5px);
  mix-blend-mode: screen;
  transition:
    opacity 0.2s ease,
    transform 0.22s ease;
}

.premium-cursor-dot {
  z-index: 81;
  width: 10px;
  height: 10px;
  background: #fff8d8;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(var(--dx, 0), var(--dy, 0), 0);
  translate: -50% -50%;
  box-shadow:
    0 0 14px rgba(255, 248, 216, 0.95),
    0 0 34px rgba(255, 225, 132, 0.58),
    0 0 62px rgba(185, 20, 20, 0.28);
}

body.cursor-ready .premium-cursor-trail,
body.cursor-ready .premium-cursor-dot {
  opacity: 1;
}

body.cursor-hovering .premium-cursor-trail {
  background: radial-gradient(
    circle,
    rgba(255, 253, 235, 0.72) 0 12%,
    rgba(255, 238, 170, 0.38) 36%,
    transparent 72%
  );
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0) scale(1.28);
}

body.cursor-hovering .premium-cursor-dot {
  background: #fffdf0;
  box-shadow:
    0 0 18px rgba(255, 253, 240, 1),
    0 0 48px rgba(255, 225, 132, 0.74),
    0 0 82px rgba(185, 20, 20, 0.34);
}

.cursor-particle {
  z-index: 79;
  width: 6px;
  height: 6px;
  background: rgba(255, 253, 235, 0.9);
  border-radius: 50%;
  translate: -50% -50%;
  box-shadow: 0 0 18px rgba(255, 225, 132, 0.72);
  animation: particleFade 0.7s ease-out forwards;
}

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

a.tap-burst,
button.tap-burst {
  animation: tapBurst 0.46s ease-out;
}

.magnetic-target {
  will-change: translate;
  transition: translate 0.22s ease;
}

.scene {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0;
}

.opening {
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 72px 16px 34px;
}

.opening::before {
  content: "";
  position: absolute;
  width: min(720px, 88vw);
  height: min(720px, 88vw);
  border: 1px solid rgba(185, 20, 20, 0.22);
  transform: rotate(12deg);
  animation: slowFrame 18s linear infinite;
}

.atmosphere span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(247, 241, 235, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(185, 20, 20, 0.44);
  animation: drift 9s linear infinite;
}

.atmosphere span:nth-child(1) {
  top: 15%;
  left: 18%;
  animation-delay: -1s;
}

.atmosphere span:nth-child(2) {
  top: 24%;
  left: 78%;
  animation-delay: -4s;
}

.atmosphere span:nth-child(3) {
  top: 64%;
  left: 16%;
  animation-delay: -2s;
}

.atmosphere span:nth-child(4) {
  top: 78%;
  left: 62%;
  animation-delay: -6s;
}

.atmosphere span:nth-child(5) {
  top: 42%;
  left: 48%;
  animation-delay: -3s;
}

.atmosphere span:nth-child(6) {
  top: 34%;
  left: 28%;
  animation-delay: -7s;
}

.atmosphere span:nth-child(7) {
  top: 58%;
  left: 86%;
  animation-delay: -5s;
}

.atmosphere span:nth-child(8) {
  top: 12%;
  left: 56%;
  animation-delay: -8s;
}

.atmosphere span:nth-child(9) {
  top: 82%;
  left: 34%;
  animation-delay: -9s;
}

.atmosphere span:nth-child(10) {
  top: 48%;
  left: 8%;
  animation-delay: -10s;
}

.opening-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.opening-stars span {
  position: absolute;
  width: var(--star-size, 3px);
  height: var(--star-size, 3px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0.16;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.7),
    0 0 18px rgba(255, 255, 255, 0.22);
  animation: starTwinkle var(--star-speed, 3.8s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}

.opening-stars span:nth-child(1) { top: 11%; left: 12%; --star-size: 2px; --star-speed: 3.7s; --star-delay: -1.1s; }
.opening-stars span:nth-child(2) { top: 19%; left: 31%; --star-size: 3px; --star-speed: 4.9s; --star-delay: -2.6s; }
.opening-stars span:nth-child(3) { top: 8%; left: 52%; --star-size: 2px; --star-speed: 4.2s; --star-delay: -0.7s; }
.opening-stars span:nth-child(4) { top: 17%; left: 72%; --star-size: 3px; --star-speed: 5.1s; --star-delay: -3.4s; }
.opening-stars span:nth-child(5) { top: 28%; left: 18%; --star-size: 2px; --star-speed: 3.9s; --star-delay: -1.8s; }
.opening-stars span:nth-child(6) { top: 31%; left: 42%; --star-size: 2px; --star-speed: 5.4s; --star-delay: -4.2s; }
.opening-stars span:nth-child(7) { top: 26%; left: 85%; --star-size: 3px; --star-speed: 4.5s; --star-delay: -2.2s; }
.opening-stars span:nth-child(8) { top: 42%; left: 9%; --star-size: 3px; --star-speed: 4.8s; --star-delay: -3.1s; }
.opening-stars span:nth-child(9) { top: 45%; left: 27%; --star-size: 2px; --star-speed: 3.5s; --star-delay: -0.9s; }
.opening-stars span:nth-child(10) { top: 38%; left: 62%; --star-size: 2px; --star-speed: 5.2s; --star-delay: -4.6s; }
.opening-stars span:nth-child(11) { top: 51%; left: 77%; --star-size: 4px; --star-speed: 4.1s; --star-delay: -1.4s; }
.opening-stars span:nth-child(12) { top: 56%; left: 14%; --star-size: 2px; --star-speed: 4.7s; --star-delay: -2.9s; }
.opening-stars span:nth-child(13) { top: 63%; left: 36%; --star-size: 3px; --star-speed: 5.6s; --star-delay: -3.7s; }
.opening-stars span:nth-child(14) { top: 60%; left: 57%; --star-size: 2px; --star-speed: 3.8s; --star-delay: -1.6s; }
.opening-stars span:nth-child(15) { top: 69%; left: 89%; --star-size: 2px; --star-speed: 4.6s; --star-delay: -2.4s; }
.opening-stars span:nth-child(16) { top: 75%; left: 21%; --star-size: 3px; --star-speed: 5.3s; --star-delay: -4.1s; }
.opening-stars span:nth-child(17) { top: 81%; left: 43%; --star-size: 2px; --star-speed: 4.4s; --star-delay: -2.1s; }
.opening-stars span:nth-child(18) { top: 78%; left: 70%; --star-size: 3px; --star-speed: 3.6s; --star-delay: -0.4s; }
.opening-stars span:nth-child(19) { top: 88%; left: 10%; --star-size: 2px; --star-speed: 5s; --star-delay: -3.2s; }
.opening-stars span:nth-child(20) { top: 86%; left: 81%; --star-size: 2px; --star-speed: 4.2s; --star-delay: -1.2s; }
.opening-stars span:nth-child(21) { top: 35%; left: 50%; --star-size: 3px; --star-speed: 5.8s; --star-delay: -4.9s; }
.opening-stars span:nth-child(22) { top: 13%; left: 91%; --star-size: 2px; --star-speed: 3.9s; --star-delay: -2.7s; }
.opening-stars span:nth-child(23) { top: 71%; left: 5%; --star-size: 2px; --star-speed: 4.9s; --star-delay: -3.9s; }
.opening-stars span:nth-child(24) { top: 22%; left: 6%; --star-size: 3px; --star-speed: 5.5s; --star-delay: -1.9s; }

.opening-moon {
  position: absolute;
  top: clamp(18px, 4vw, 38px);
  right: clamp(18px, 5vw, 64px);
  z-index: 1;
  width: clamp(96px, 15vw, 190px);
  height: auto;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.24));
}

.opening-quote {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  animation: openingQuote 1.3s ease both;
}

.quote-mark {
  max-width: 700px;
  margin: 0;
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.32;
  text-wrap: balance;
  text-shadow: 0 26px 80px rgba(0, 0, 0, 0.7);
  color: var(--white);
}

.opening h1 {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--muted);
}

.hero-book-stage {
  position: relative;
  z-index: 2;
  width: clamp(220px, 25vw, 360px);
  margin-top: clamp(24px, 3.8vh, 48px);
}

.hero-book-stage::after {
  content: "";
  position: absolute;
  inset: auto 12% -8% 12%;
  height: 18%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 70%);
  filter: blur(18px);
  opacity: 0;
  animation:
    heroBookShadowIn 1.2s 0.35s ease-out forwards,
    heroBookShadowFloat 6.4s 1.2s ease-in-out infinite;
}

.hero-book-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(255, 248, 216, 0.1));
  will-change: transform;
  animation:
    heroBookSettle 0.95s 0.22s cubic-bezier(0.16, 0.82, 0.18, 1) both,
    heroBookFloat 4.8s 1.2s ease-in-out infinite;
}

.opening-price-card {
  position: relative;
  z-index: 3;
  width: min(410px, calc(100% - 28px));
  margin-top: clamp(14px, 2vh, 22px);
  padding: clamp(11px, 1.45vw, 15px) clamp(16px, 2.3vw, 22px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 34%),
    rgba(12, 5, 5, 0.72);
  border: 1px solid rgba(185, 20, 20, 0.34);
  border-radius: 20px;
  box-shadow:
    inset 0 0 22px rgba(185, 20, 20, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(101, 11, 11, 0.22);
  backdrop-filter: blur(10px);
  animation: fadeLift 0.9s 0.45s ease both;
}

.opening-price-card::before {
  content: "";
  position: absolute;
  inset: 0 12%;
  top: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 248, 216, 0.62),
    rgba(185, 20, 20, 0.72),
    transparent
  );
}

.opening-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.opening-price-now {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #fff8ef;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.26),
    0 0 34px rgba(185, 20, 20, 0.24);
}

.opening-price-number {
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 950;
  line-height: 0.92;
}

.opening-price-currency {
  font-family: "Aref Ruqaa", "Amiri", "Times New Roman", serif;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 700;
  color: #f5d7b2;
  text-shadow:
    0 0 12px rgba(245, 215, 178, 0.32),
    0 0 22px rgba(185, 20, 20, 0.26);
  transform: skewX(-9deg) translateY(2px);
}

.opening-discount {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 900;
  color: #fff8ef;
  background: linear-gradient(135deg, rgba(185, 20, 20, 0.92), rgba(101, 11, 11, 0.78));
  border: 1px solid rgba(255, 248, 216, 0.28);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(185, 20, 20, 0.28);
}

.opening-old-price {
  margin: 7px 0 0;
  color: rgba(247, 241, 235, 0.76);
  font-size: clamp(13px, 1.28vw, 16px);
  font-weight: 700;
}

.opening-old-price span {
  position: relative;
  display: inline-block;
  margin-inline-start: 6px;
  color: rgba(247, 241, 235, 0.56);
}

.opening-old-price span::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 51%;
  height: 2px;
  background: rgba(185, 20, 20, 0.82);
  transform: rotate(-7deg);
  box-shadow: 0 0 10px rgba(185, 20, 20, 0.34);
}

.opening-offer-note {
  margin: 6px auto 0;
  max-width: 360px;
  color: rgba(247, 241, 235, 0.9);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 800;
  line-height: 1.5;
}

.enter-button {
  position: relative;
  z-index: 3;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: clamp(16px, 2.4vh, 26px);
  padding: 15px 26px;
  font-weight: 900;
  color: var(--white);
  background: rgba(185, 20, 20, 0.18);
  border: 1px solid rgba(185, 20, 20, 0.48);
  border-radius: 999px;
  box-shadow: 0 0 36px rgba(101, 11, 11, 0.32);
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.enter-button::before {
  content: "";
  position: absolute;
  inset: -80%;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 64deg,
    rgba(255, 255, 255, 0.95) 82deg,
    rgba(255, 248, 216, 0.62) 96deg,
    rgba(185, 20, 20, 0.12) 118deg,
    transparent 138deg 360deg
  );
  animation: buyBorderOrbit 3.8s linear infinite;
}

.enter-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: rgba(41, 7, 7, 0.92);
  border-radius: inherit;
  box-shadow:
    inset 0 0 18px rgba(185, 20, 20, 0.22),
    0 0 18px rgba(255, 248, 216, 0.18);
}

.enter-button span {
  position: relative;
  z-index: 1;
}

.enter-button:hover::before,
.enter-button:focus-visible::before {
  animation-duration: 1.15s;
}

.opening .enter-button:hover,
.opening .enter-button:focus-visible {
  background: rgba(185, 20, 20, 0.24);
  border-color: rgba(255, 248, 216, 0.78);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.42),
    0 0 58px rgba(255, 248, 216, 0.28),
    0 0 92px rgba(185, 20, 20, 0.4);
}

.section-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--red);
  background: rgba(185, 20, 20, 0.08);
  border: 1px solid rgba(185, 20, 20, 0.28);
  border-radius: 999px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.12;
  text-wrap: balance;
}

.about-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
  padding: clamp(18px, 4vw, 40px) 0;
}

.about-grid::before {
  content: none;
}

.about-copy {
  direction: rtl;
  text-align: center;
}

.about-title {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 760px;
  font-size: clamp(38px, 6.2vw, 86px);
  line-height: 1.08;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.34),
    0 0 36px rgba(255, 255, 255, 0.2),
    0 0 62px rgba(255, 255, 255, 0.12);
}

.about-title span:first-child {
  color: var(--white);
}

.about-title span:last-child {
  color: var(--white);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.36),
    0 0 38px rgba(255, 255, 255, 0.22),
    0 0 68px rgba(255, 255, 255, 0.14);
}

.about-divider {
  position: relative;
  width: min(560px, 100%);
  height: 1px;
  margin: clamp(18px, 3vw, 28px) auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 149, 84, 0.62),
    transparent
  );
}

.about-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #c79554;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(255, 225, 132, 0.22);
}

.about p {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 2;
  color: rgba(247, 241, 235, 0.78);
}

.stats {
  width: 100%;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 38%, rgba(185, 20, 20, 0.36), transparent 24%),
    radial-gradient(circle at 66% 34%, rgba(97, 9, 9, 0.26), transparent 34%),
    linear-gradient(90deg, #080505 0%, #130605 48%, #040303 100%);
}

.stats > * {
  position: relative;
  z-index: 1;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.7;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 96%);
}

.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16%),
    radial-gradient(circle at 24% 44%, rgba(255, 33, 33, 0.18), transparent 20%);
}

.stats-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0 28px;
}

.hero {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  min-height: 0;
  padding: clamp(12px, 2.2vw, 28px) 0 10px;
}

.hero-text {
  flex: 0 1 52%;
  width: 52%;
  text-align: right;
}

.hero-text h2 {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  max-width: 640px;
  margin-inline-start: 0;
  margin-inline-end: auto;
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: clamp(48px, 6.1vw, 88px);
  line-height: 0.96;
  font-weight: 900;
  color: var(--white);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04),
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 54px rgba(185, 20, 20, 0.28);
}

.hero-image {
  flex: 0 1 34%;
  width: 34%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}

.stats-boy-art {
  display: block;
  align-self: end;
  width: clamp(320px, 31vw, 420px);
  max-width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 0.96;
  filter:
    drop-shadow(0 28px 58px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 42px rgba(185, 20, 20, 0.22));
}

.stats-grid {
  display: grid;
  justify-content: center;
  align-self: end;
  gap: clamp(20px, 3.8vw, 44px);
  grid-template-columns: repeat(2, minmax(260px, 360px));
  width: min(820px, 100%);
  max-width: 920px;
  margin: 0 auto;
}

.stats-grid article {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: clamp(170px, 17vw, 220px);
  padding: clamp(28px, 3.2vw, 44px);
  text-align: center;
  background: rgba(4, 2, 2, 0.94);
  border: 1px solid rgba(120, 11, 12, 0.82);
  border-radius: 34px;
  box-shadow:
    0 0 0 1px rgba(255, 20, 24, 0.04),
    0 0 32px rgba(185, 20, 20, 0.16),
    0 24px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.stats-grid strong {
  display: block;
  min-height: 0;
  max-width: 100%;
  background: transparent;
  font-size: clamp(30px, 3.9vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: #b91414;
  text-shadow:
    0 0 18px rgba(185, 20, 20, 0.28),
    0 0 42px rgba(185, 20, 20, 0.14);
}

.quote-stat-card strong {
  max-width: 92%;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
}

.stats-grid span {
  margin-top: 16px;
  background: transparent;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.45;
  color: rgba(247, 241, 235, 0.64);
}

.secret {
  text-align: center;
}

.reviews {
  isolation: isolate;
}

.reviews > :not(.reviews-vision-gif) {
  position: relative;
  z-index: 1;
}

.reviews-vision-gif {
  position: absolute;
  top: clamp(12px, 3.8vw, 48px);
  left: clamp(-86px, -5vw, -42px);
  z-index: 0;
  width: clamp(180px, 20vw, 310px);
  height: auto;
  pointer-events: none;
  opacity: 0.88;
  filter: drop-shadow(0 0 24px rgba(255, 248, 216, 0.2));
}

.secret .section-label,
.reviews .section-label {
  margin-inline: auto;
  padding: 11px 20px;
  font-size: 15px;
  text-shadow: 0 0 18px rgba(255, 225, 132, 0.22);
  color: #fff8d8;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 248, 216, 0.14),
      transparent 58%
    ),
    rgba(185, 20, 20, 0.18);
  border-color: rgba(255, 248, 216, 0.34);
  box-shadow:
    0 0 28px rgba(255, 225, 132, 0.16),
    inset 0 0 18px rgba(185, 20, 20, 0.12);
}

.secret-door {
  position: relative;
  cursor: pointer;
  transform-origin: right center;
  width: 120px;
  height: 168px;
  margin: 34px auto 12px;
  background: linear-gradient(135deg, #110707, #4d1210 56%, #070303);
  border: 1px solid rgba(247, 241, 235, 0.18);
  border-radius: 60px 60px 12px 12px;
  box-shadow: 0 0 70px rgba(185, 20, 20, 0.24);
  transition:
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.secret-door.opened {
  filter: brightness(0.92);
  box-shadow:
    0 0 95px rgba(255, 225, 132, 0.18),
    0 0 70px rgba(185, 20, 20, 0.22);
}

.secret-door.knocked {
  box-shadow:
    0 0 34px rgba(255, 248, 216, 0.2),
    0 0 82px rgba(185, 20, 20, 0.3);
}

.secret-door span {
  position: absolute;
  inset-inline-start: 24px;
  top: 86px;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(247, 241, 235, 0.5);
}

.secret-hint {
  color: var(--muted);
}

.secret-message {
  position: relative;
  overflow: hidden;
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 24px auto 0;
  padding: 24px 34px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 248, 216, 0.12),
      transparent 42%
    ),
    var(--panel-strong);
  border: 1px solid rgba(255, 248, 216, 0.18);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(28px) scale(0.88);
  filter: blur(14px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    0 0 0 rgba(255, 225, 132, 0);
}

.secret-message::before {
  content: "";
  position: absolute;
  inset: -60% -18%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 34%,
    rgba(255, 248, 216, 0.72) 48%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(75%) skewX(-18deg);
}

.secret-message.visible {
  animation: secretMessageReveal 0.95s cubic-bezier(0.16, 0.82, 0.18, 1)
    forwards;
}

.secret-message.visible::before {
  animation: secretMessageShine 1.05s 0.12s cubic-bezier(0.16, 0.82, 0.18, 1)
    forwards;
}

.secret-message p {
  margin: 0;
  font-size: clamp(16px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.35;
  text-shadow:
    0 0 22px rgba(255, 248, 216, 0.22),
    0 18px 46px rgba(255, 225, 132, 0.16);
  white-space: nowrap;
  color: #fff8d8;
  opacity: 0;
  transform: translateY(10px);
}

.secret-message.visible p {
  animation: secretTextReveal 0.65s 0.2s ease-out forwards;
}

.review-board {
  overflow: hidden;
  perspective: 1000px;
  display: grid;
  margin-top: 44px;
  padding: 18px 8px 26px;
}

.review-page {
  pointer-events: none;
  display: grid;
  align-items: start;
  gap: 22px 18px;
  grid-area: 1 / 1;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  opacity: 0;
  transform: translateX(-110%);
}

.review-page.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}

.review-page.is-incoming {
  animation: reviewPageIn 0.95s cubic-bezier(0.16, 0.82, 0.18, 1) both;
}

.review-page.is-outgoing {
  pointer-events: none;
  animation: reviewPageOut 0.78s cubic-bezier(0.55, 0.02, 0.45, 0.98) both;
}

.review-card {
  min-height: 148px;
  padding: 20px 22px 22px;
  color: #1c0e0c;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.74),
      rgba(255, 248, 216, 0.9) 48%,
      rgba(239, 222, 191, 0.96)
    ),
    #f4eee5;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  transform: rotate(var(--paper-rotate, 0deg)) translateY(var(--paper-lift, 0));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  animation: paperFloat 6.8s ease-in-out infinite;
}

.review-card:nth-child(1) {
  --paper-rotate: -4deg;
  --paper-lift: 8px;
  animation-delay: -0.4s;
}

.review-card:nth-child(2) {
  --paper-rotate: 3deg;
  --paper-lift: -10px;
  animation-delay: -2.1s;
}

.review-card:nth-child(3) {
  --paper-rotate: -2deg;
  --paper-lift: 16px;
  animation-delay: -1.2s;
}

.review-card:nth-child(4) {
  --paper-rotate: 5deg;
  --paper-lift: -3px;
  animation-delay: -3.3s;
}

.review-card:nth-child(5) {
  --paper-rotate: 2deg;
  --paper-lift: 12px;
  animation-delay: -1.8s;
}

.review-card:nth-child(6) {
  --paper-rotate: -5deg;
  --paper-lift: -8px;
  animation-delay: -4.1s;
}

.review-card:nth-child(7) {
  --paper-rotate: 4deg;
  --paper-lift: 18px;
  animation-delay: -2.7s;
}

.review-card:nth-child(8) {
  --paper-rotate: -3deg;
  --paper-lift: 2px;
  animation-delay: -0.9s;
}

.review-card:nth-child(9) {
  --paper-rotate: 5deg;
  --paper-lift: -12px;
  animation-delay: -3.8s;
}

.review-card:nth-child(10) {
  --paper-rotate: -2deg;
  --paper-lift: 10px;
  animation-delay: -1.5s;
}

.review-card:nth-child(11) {
  --paper-rotate: 3deg;
  --paper-lift: 0;
  animation-delay: -2.9s;
}

.review-card:nth-child(12) {
  --paper-rotate: -4deg;
  --paper-lift: 15px;
  animation-delay: -4.6s;
}

.review-card:nth-child(13) {
  --paper-rotate: 2deg;
  --paper-lift: -6px;
  animation-delay: -2.4s;
}

.review-card:nth-child(14) {
  --paper-rotate: -5deg;
  --paper-lift: 9px;
  animation-delay: -3.1s;
}

.review-card:nth-child(15) {
  --paper-rotate: 4deg;
  --paper-lift: -11px;
  animation-delay: -0.7s;
}

.review-card:nth-child(16) {
  --paper-rotate: -3deg;
  --paper-lift: 14px;
  animation-delay: -4.9s;
}

.review-card:hover {
  transform: rotate(var(--paper-rotate, 0deg))
    translateY(calc(var(--paper-lift, 0px) - 8px)) scale(1.03);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 225, 132, 0.2);
}

.review-card strong {
  display: block;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.35;
  text-align: right;
  color: #7d1713;
}

.review-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  text-align: right;
  color: #2f1a16;
}

.service-features {
  width: min(1120px, calc(100% - 32px));
  padding: 48px 0 0;
  margin-bottom: 0;
}

.service-features + .ending {
  margin-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 300px;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.4vw, 30px);
  color: #f6ead2;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 248, 216, 0.11),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(185, 20, 20, 0.18),
      transparent 44%
    ),
    linear-gradient(145deg, rgba(19, 14, 12, 0.88), rgba(8, 6, 6, 0.94));
  border: 1px solid rgba(199, 149, 84, 0.52);
  border-radius: 8px;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.36),
    inset 0 0 28px rgba(255, 248, 216, 0.035);
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 33, 33, 0.96),
    transparent
  );
  box-shadow:
    0 0 12px rgba(255, 33, 33, 0.86),
    0 0 28px rgba(185, 20, 20, 0.58);
}

.feature-card::before {
  top: 0;
}

.feature-card::after {
  bottom: 0;
}

.feature-icon {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(92px, 8vw, 118px);
  aspect-ratio: 1;
  color: #f4dfab;
  border: 1px solid rgba(199, 149, 84, 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 248, 216, 0.12), transparent 58%),
    rgba(12, 8, 7, 0.46);
  box-shadow:
    0 0 28px rgba(199, 149, 84, 0.14),
    inset 0 0 18px rgba(255, 248, 216, 0.06);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(199, 149, 84, 0.22);
  border-radius: 50%;
}

.feature-icon::before {
  inset: -9px;
}

.feature-icon::after {
  inset: -16px;
  border-style: dashed;
  opacity: 0.5;
}

.feature-icon svg {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(244, 223, 171, 0.24));
}

.feature-image-icon {
  width: clamp(118px, 11vw, 168px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-image-icon::before,
.feature-image-icon::after {
  display: none;
}

.feature-image-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(244, 223, 171, 0.22));
}

.feature-copy {
  display: grid;
  justify-items: center;
  gap: 13px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.feature-copy h3 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(23px, 2.15vw, 34px);
  line-height: 1.2;
  color: #fff1cf;
  text-shadow: 0 0 18px rgba(255, 248, 216, 0.16);
  text-wrap: balance;
}

.feature-copy p {
  margin: 0;
  max-width: 260px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
  color: rgba(247, 241, 235, 0.66);
}

.feature-rule {
  position: relative;
  width: min(180px, 68%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(185, 20, 20, 0.88),
    rgba(255, 248, 216, 0.28),
    transparent
  );
}

.feature-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: translate(50%, -50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(255, 33, 33, 0.72);
}

.ending {
  width: 100%;
  aspect-ratio: 1400 / 1008;
  padding: 0;
  display: grid;
  place-items: center;
  min-height: 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.ending-moon-art {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: 100vw;
  max-width: none;
  height: auto;
  opacity: 0.58;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 38px rgba(255, 255, 255, 0.12));
}

.ending-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.end-overline {
  margin: 0;
  font-size: clamp(24px, 4vw, 46px);
  color: var(--muted);
}

.ending h2 {
  max-width: 900px;
  font-size: clamp(46px, 8vw, 104px);
}

.site-footer {
  width: 100%;
  padding: 0 0 clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 20, 20, 0.16), transparent 34%),
    #030303;
}

.footer-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(185, 20, 20, 0.38);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%),
    rgba(10, 9, 9, 0.92);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 52px rgba(185, 20, 20, 0.13);
}

.footer-main {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(36px, 4.8vw, 62px) clamp(30px, 4.8vw, 70px);
}

.footer-column {
  direction: rtl;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 270px;
  padding: 0 clamp(18px, 2.3vw, 34px);
  text-align: center;
}

.footer-column + .footer-column {
  border-left: 1px solid rgba(185, 20, 20, 0.24);
}

.footer-about {
  align-content: start;
  justify-items: center;
}

.footer-about > * {
  transform: translateX(20px);
}

.footer-column h2 {
  position: relative;
  margin: 0 0 44px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.2;
  color: #f7f1eb;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.footer-column h2::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -22px;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b1111, #ff4d55, #7b1111);
  transform: translateX(50%);
  box-shadow: 0 0 16px rgba(255, 33, 33, 0.36);
}

.footer-list {
  display: grid;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  direction: ltr;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(247, 241, 235, 0.9);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
  text-align: left;
}

.footer-trust .footer-list li {
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(185, 20, 20, 0.25);
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(185, 20, 20, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(185, 20, 20, 0.08);
  color: #ff686d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 20px rgba(185, 20, 20, 0.12);
}

.footer-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-tiktok-link {
  display: grid;
  place-items: center;
  justify-self: start;
  width: 48px;
  aspect-ratio: 1;
  margin: 0;
  translate: 0 0 !important;
  transition: none;
}

.footer-tiktok-link img {
  width: 56px;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 36, 36, 0.24));
}

.footer-tiktok-handle {
  color: inherit;
  translate: 0 0 !important;
  transition: none;
}

.footer-contact-link,
.footer-whatsapp-link {
  color: inherit;
  translate: 0 0 !important;
  transition: none;
}

.footer-document {
  width: min(185px, 100%);
  height: auto;
  margin-top: 24px;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.payment-grid {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 12px;
  width: min(260px, 100%);
  margin-top: -6px;
}

.payment-card {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid rgba(125, 17, 19, 0.78);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(3, 3, 3, 0.96);
  color: rgba(247, 241, 235, 0.88);
  font-weight: 800;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 18px rgba(185, 20, 20, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.32);
}

.payment-card img {
  display: block;
  max-width: 78%;
  max-height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
}

.payment-visa {
  color: #e8e3df;
  font-size: 28px;
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.06);
}

.payment-master {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-master span {
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #eb001b;
  box-shadow: 0 0 18px rgba(235, 0, 27, 0.24);
}

.payment-master span + span {
  margin-inline-start: -14px;
  background: #f79e1b;
  opacity: 0.92;
}

.payment-stc {
  grid-column: 1 / -1;
  width: min(168px, 76%);
  justify-self: center;
  min-height: 60px;
}

.payment-stc img {
  max-width: 76%;
  max-height: 34px;
}

.footer-logo {
  width: min(150px, 68%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  filter:
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 34px rgba(185, 20, 20, 0.16));
}

.footer-about p {
  max-width: 230px;
  margin: 18px auto 0;
  color: rgba(247, 241, 235, 0.68);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.75;
  text-align: center;
  text-wrap: balance;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  padding: 26px clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(185, 20, 20, 0.34);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(247, 241, 235, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
}

.reveal {
  will-change: opacity, transform, filter;
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), 42px, 0) scale(0.96);
  filter: blur(14px);
  transition:
    opacity 0.95s ease,
    transform 1s cubic-bezier(0.16, 0.82, 0.18, 1),
    filter 0.95s ease;
}

.reveal-from-right {
  --reveal-x: 96px;
}

.reveal-from-left {
  --reveal-x: -96px;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.visible
  :is(
    h2,
    .section-label,
    .about-grid,
    .secret-door,
    .review-board
  ) {
  animation: revealInnerSettle 0.9s 0.08s cubic-bezier(0.16, 0.82, 0.18, 1) both;
}

@keyframes openingQuote {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes paperFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes heroBookFloat {
  0%,
  100% {
    transform: translate3d(0, 2px, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes heroBookSettle {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
    filter: blur(8px) drop-shadow(0 20px 38px rgba(0, 0, 0, 0.32));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 28px rgba(255, 248, 216, 0.1));
  }
}

@keyframes heroBookShadowIn {
  from {
    opacity: 0;
    transform: scaleX(0.72);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroBookShadowFloat {
  0%,
  100% {
    opacity: 0.9;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.68;
    transform: scaleX(0.86);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes buyBorderOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes revealInnerSettle {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes reviewPageIn {
  from {
    opacity: 0;
    transform: translateX(-110%) scale(0.96);
    filter: blur(14px);
  }
  62% {
    opacity: 1;
    transform: translateX(3%) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes reviewPageOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: translateX(110%) scale(0.96);
    filter: blur(14px);
  }
}

@keyframes secretMessageReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.82);
    filter: blur(16px);
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.34),
      0 0 0 rgba(255, 225, 132, 0);
  }
  62% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
    filter: blur(0);
    box-shadow:
      0 36px 105px rgba(0, 0, 0, 0.42),
      0 0 54px rgba(255, 225, 132, 0.22);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.34),
      0 0 34px rgba(255, 225, 132, 0.14);
  }
}

@keyframes secretMessageShine {
  0% {
    opacity: 0;
    transform: translateX(75%) skewX(-18deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-90%) skewX(-18deg);
  }
}

@keyframes secretTextReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 0.08em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0;
  }
}

@keyframes slowFrame {
  to {
    transform: rotate(372deg);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.15;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(-36px, -90px, 0);
    opacity: 0.05;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.72);
  }
  42% {
    opacity: 0.86;
    transform: scale(1);
  }
  58% {
    opacity: 0.32;
    transform: scale(0.84);
  }
}

@keyframes particleFade {
  0% {
    opacity: 0.95;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--tx), var(--ty), 0) scale(0.18);
  }
}

@keyframes tapBurst {
  0% {
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(255, 248, 216, 0.5);
  }
  55% {
    filter: brightness(1.2);
    box-shadow:
      0 0 0 10px rgba(255, 248, 216, 0.08),
      0 0 28px rgba(255, 225, 132, 0.2);
  }
  100% {
    filter: brightness(1);
    box-shadow: 0 0 0 18px rgba(255, 248, 216, 0);
  }
}

@media (max-width: 900px) {
  .scene {
    padding: 82px 0;
  }

  .stats {
    padding: 0;
  }

  .stats-hero-shell {
    min-height: auto;
    padding: 18px 0 34px;
  }

  .reviews-vision-gif {
    top: 18px;
    left: 0;
    width: min(230px, 46vw);
    opacity: 0.56;
  }

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

  .hero {
    flex-direction: column;
    gap: 28px;
    min-height: auto;
    padding: 30px 0 28px;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    flex-basis: auto;
  }

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

  .hero-text h2 {
    margin-inline: auto;
  }

  .stats-boy-art {
    width: min(360px, 82vw);
    opacity: 0.86;
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(8px, 1.6vw, 18px);
  }

  .service-features {
    padding-bottom: 0;
  }

  .ending {
    padding: 0;
  }

  .feature-card {
    gap: clamp(12px, 2vw, 20px);
    min-height: clamp(190px, 28vw, 280px);
    padding: clamp(16px, 2.8vw, 28px) clamp(10px, 1.8vw, 20px);
  }

  .feature-image-icon {
    width: clamp(82px, 13vw, 132px);
  }

  .feature-copy {
    gap: clamp(8px, 1.4vw, 13px);
  }

  .feature-copy h3 {
    font-size: clamp(15px, 2.9vw, 28px);
  }

  .feature-copy p {
    font-size: clamp(11px, 2vw, 17px);
    line-height: 1.55;
  }

  .feature-rule {
    width: min(120px, 72%);
  }

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

  .footer-column {
    min-height: auto;
    padding-block: 30px;
  }

  .footer-column + .footer-column {
    border-left: 0;
  }

  .footer-column:nth-child(2n) {
    border-left: 1px solid rgba(185, 20, 20, 0.24);
  }

  .footer-column:nth-child(n + 3) {
    border-top: 1px solid rgba(185, 20, 20, 0.2);
  }

  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .about-title {
    justify-items: center;
  }

  .about-divider {
    margin-inline: auto;
  }

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

@media (max-width: 560px) {
  .preloader {
    padding: 20px;
  }

  .preloader-logo {
    width: min(96vw, 560px);
    max-height: 42vh;
    border-radius: 0;
  }

  .preloader-percent {
    margin-top: 16px;
  }

  .preloader-progress {
    width: min(320px, 82vw);
  }

  .opening {
    padding-inline: 10px;
  }

  .hero-book-stage {
    width: min(260px, 66vw);
    margin-top: 32px;
  }

  .opening-price-card {
    width: min(340px, calc(100% - 24px));
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .opening-price-row {
    gap: 8px 10px;
  }

  .opening-offer-note {
    max-width: 285px;
    line-height: 1.65;
  }

  .stats-hero-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-text h2 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .stats-grid {
    gap: 16px;
  }

  .review-page {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 1.8vw, 10px);
  }

  .service-features {
    width: min(100% - 16px, 1120px);
    padding-bottom: 0;
  }

  .ending {
    padding: 0;
  }

  .feature-card {
    gap: clamp(7px, 2vw, 10px);
    justify-items: center;
    min-height: clamp(138px, 42vw, 180px);
    padding: clamp(9px, 2.7vw, 12px) clamp(6px, 1.9vw, 9px);
    text-align: center;
  }

  .feature-image-icon {
    width: clamp(48px, 16vw, 72px);
  }

  .feature-copy {
    gap: 6px;
    justify-items: center;
    text-align: center;
  }

  .feature-copy h3 {
    font-size: clamp(10px, 3.35vw, 14px);
    line-height: 1.25;
  }

  .feature-copy p {
    max-width: 100%;
    font-size: clamp(8.5px, 2.55vw, 11px);
    line-height: 1.45;
  }

  .feature-rule {
    width: min(72px, 72%);
  }

  .feature-rule::after {
    width: 7px;
    height: 7px;
  }

  .feature-rule::after {
    right: 50%;
    transform: translate(50%, -50%) rotate(45deg);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 12px 18px;
  }

  .footer-column {
    min-width: 0;
    padding: 22px 8px;
  }

  .footer-column,
  .footer-column:nth-child(2n),
  .footer-column:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .footer-column:nth-child(2n) {
    border-left: 1px solid rgba(185, 20, 20, 0.2);
  }

  .footer-column:nth-child(n + 3) {
    border-top: 1px solid rgba(185, 20, 20, 0.2);
  }

  .footer-column h2 {
    margin-bottom: 28px;
    font-size: clamp(15px, 4.2vw, 19px);
  }

  .footer-column h2::after {
    bottom: -15px;
    width: 34px;
    height: 2px;
  }

  .footer-about > * {
    transform: none;
  }

  .footer-list {
    gap: 14px;
  }

  .footer-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    font-size: clamp(10px, 3.1vw, 13px);
    text-align: center;
  }

  .footer-icon {
    width: 38px;
    border-radius: 8px;
  }

  .footer-icon svg {
    width: 21px;
    height: 21px;
  }

  .footer-contact-link,
  .footer-list li span[dir="ltr"],
  .footer-tiktok-handle {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(10px, 3vw, 13px);
  }

  .footer-tiktok-link {
    justify-self: center;
    width: 38px;
  }

  .footer-tiktok-link img {
    width: 46px;
  }

  .footer-document {
    width: min(128px, 92%);
    margin-top: 10px;
  }

  .payment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: min(168px, 100%);
    margin-top: -2px;
  }

  .payment-card {
    min-height: 42px;
    border-radius: 10px;
  }

  .payment-card img {
    max-height: 24px;
  }

  .payment-visa {
    font-size: 20px;
  }

  .payment-master span {
    width: 25px;
  }

  .payment-stc {
    width: min(120px, 84%);
    min-height: 44px;
  }

  .footer-logo {
    width: min(96px, 78%);
  }

  .footer-about p {
    max-width: 150px;
    margin-top: 12px;
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.7;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .review-card {
    min-height: auto;
  }
}

@media (pointer: coarse), (max-width: 760px) {
  .reveal-from-right,
  .reveal-from-left {
    --reveal-x: 0;
  }

  body.has-premium-cursor,
  body.has-premium-cursor a,
  body.has-premium-cursor button {
    cursor: auto;
  }

  .premium-cursor-trail,
  .premium-cursor-dot,
  .cursor-particle {
    display: none;
  }

  .cursor-light {
    z-index: -1;
    background: radial-gradient(
      circle at var(--mx, 50%) var(--my, 28%),
      rgba(255, 248, 216, 0.2),
      rgba(255, 225, 132, 0.12) 12%,
      rgba(185, 20, 20, 0.22) 28%,
      transparent 44%
    );
    transition: background 0.08s ease;
  }
}

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