:root {
  --ink: #090909;
  --black: #050505;
  --paper: #f1eee8;
  --white: #fffdf8;
  --red: #ec1f2b;
  --red-deep: #8d0710;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(9, 9, 9, 0.16);
  --muted-dark: rgba(255, 255, 255, 0.6);
  --muted-light: rgba(9, 9, 9, 0.58);
  --cursor-x: -100px;
  --cursor-y: -100px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", Tahoma, sans-serif;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--red);
  color: white;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  right: 12px;
  padding: 12px 18px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s;
}
.skip-link:focus {
  transform: none;
}
#content {
  position: relative;
  top: -90px;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.section-shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.section-shell--wide {
  width: min(1320px, calc(100% - 64px));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 999px;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: white;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid white;
  transition:
    width 0.18s,
    height 0.18s;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  inset-inline: 0;
  min-height: 82px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.35s,
    min-height 0.35s,
    border-color 0.35s;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 18%;
  background: var(--red);
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 5, 5, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 40px;
  color: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.brand-mark svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.brand-mark--compact {
  border-color: rgba(255, 255, 255, 0.42);
  width: 62px;
  height: 50px;
}
.brand-mark--compact svg {
  width: 42px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 21px;
  letter-spacing: 0.01em;
}
.brand-copy small {
  margin-top: 7px;
  font:
    600 8px/1 Arial,
    sans-serif;
  letter-spacing: 0.18em;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.25s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.3s;
}
.desktop-nav a:hover {
  color: white;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  font:
    700 12px/1 Arial,
    sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 13px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.3s,
    border-color 0.3s,
    transform 0.2s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover::before {
  transform: none;
}
.button:active {
  transform: translateY(2px);
}
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.button--small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 12px;
}
.button--red {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.button--red::before {
  background: white;
}
.button--red:hover {
  color: var(--ink);
}
.button--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.button--light::before {
  background: var(--red);
}
.button--light:hover {
  color: white;
  border-color: var(--red);
}
.button--outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.58);
}
.button--outline::before {
  background: white;
}
.button--outline:hover {
  color: var(--ink);
  border-color: white;
}
.button--ink {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.button--ink::before {
  background: var(--red);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(420px, 92vw);
  padding: 28px;
  background: var(--paper);
  transform: translateX(102%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: none;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
}
.mobile-menu__head button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}
.mobile-menu nav {
  margin: 30px 0;
}
.mobile-menu nav a {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.mobile-menu nav a span {
  color: var(--red);
  font:
    700 11px/1 Arial,
    sans-serif;
}
.mobile-menu__panel > .button {
  width: 100%;
}
.mobile-contact {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted-light);
  font-size: 13px;
}

.hero {
  min-height: 900px;
  height: 100svh;
  max-height: 1080px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--red-deep);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: contrast(1.08) saturate(0.45);
}
.hero__red {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 0, 0, 0.98) 0%,
    rgba(170, 0, 10, 0.86) 45%,
    rgba(229, 24, 35, 0.45) 100%
  );
  mix-blend-mode: multiply;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 42%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero__ghost {
  position: absolute;
  left: 1%;
  bottom: -5%;
  font:
    800 clamp(180px, 25vw, 410px) / 0.8 Arial,
    sans-serif;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.055);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  margin: 70px auto 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.eyebrow i {
  width: 34px;
  height: 2px;
  background: currentColor;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}
.eyebrow--red {
  color: var(--red);
}
.hero h1 {
  max-width: 760px;
  margin: 28px 0 26px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.hero h1 span,
.hero h1 strong {
  display: block;
}
.hero h1 span {
  color: var(--red);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  filter: brightness(1.35);
}
.hero h1 strong {
  color: white;
  font-weight: 800;
}
.hero__content > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.9;
}
.hero__buttons {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.hero__proof {
  display: flex;
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: min(640px, 100%);
}
.hero__proof div {
  flex: 1;
  padding: 18px 0 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__proof div:last-child {
  border-left: 0;
}
.hero__proof strong,
.hero__proof span {
  display: block;
}
.hero__proof strong {
  font:
    700 23px/1 Arial,
    sans-serif;
}
.hero__proof span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  width: 1px;
  height: 60px;
  background: linear-gradient(white, transparent);
}

.ticker {
  height: 72px;
  overflow: hidden;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
}
.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 24s linear infinite;
}
.ticker__track span {
  white-space: nowrap;
  margin: 0 34px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.ticker__track i {
  margin-right: 42px;
  font:
    800 22px/1 Arial,
    sans-serif;
  font-style: normal;
}
@keyframes ticker {
  to {
    transform: translateX(50%);
  }
}

.contrast {
  padding: 150px 0;
  color: white;
  background:
    radial-gradient(
      circle at 15% 45%,
      rgba(236, 31, 43, 0.68),
      transparent 42%
    ),
    linear-gradient(105deg, #310003, #080808 68%);
}
.mega-title {
  margin: 30px 0 24px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}
.mega-title span,
.mega-title strong {
  display: block;
}
.mega-title strong {
  color: var(--red);
  font-weight: 800;
}
.mega-title--ink {
  color: var(--ink);
}
.section-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.9;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  border: 1px solid var(--line-dark);
}
.compare-card {
  min-height: 540px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}
.compare-card + .compare-card {
  border-right: 1px solid var(--line-dark);
}
.compare-card::after {
  content: "+";
  position: absolute;
  top: 32px;
  left: 38px;
  font:
    800 26px/1 Arial,
    sans-serif;
}
.compare-card > span {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.compare-card h3 {
  margin: 40px 0 46px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-card li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
}
.compare-card--muted {
  background: rgba(0, 0, 0, 0.32);
}
.compare-card--muted h3 {
  color: rgba(255, 255, 255, 0.38);
}
.compare-card--bright {
  background: var(--red);
}
.compare-card--bright > span,
.compare-card--bright li {
  color: white;
}

.principles {
  padding: 150px 0 132px;
  background: var(--paper);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 66px;
  border: 1px solid var(--line-light);
}
.principle-grid article {
  min-height: 310px;
  padding: 30px 24px;
  border-left: 1px solid var(--line-light);
  position: relative;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.principle-grid article:last-child {
  border-left: 0;
}
.principle-grid article:hover {
  background: var(--red);
  color: white;
  transform: translateY(-8px);
}
.principle-grid article > span {
  color: var(--red);
  font:
    700 11px/1 Arial,
    sans-serif;
}
.principle-grid article:hover > span {
  color: white;
}
.principle-grid h3 {
  margin: 70px 0 20px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 25px;
}
.principle-grid p {
  margin: 0;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.85;
}
.principle-grid article:hover p {
  color: rgba(255, 255, 255, 0.76);
}

.programs {
  padding: 150px 0;
  background: var(--black);
  color: white;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.section-heading > p {
  margin: 0 0 16px;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.9;
}
.section-heading--dark > p {
  color: var(--muted-dark);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-card {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101010;
}
.program-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.12);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s;
}
.program-card__media div {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    #070707 4%,
    rgba(7, 7, 7, 0.78) 34%,
    rgba(7, 7, 7, 0.08) 78%
  );
}
.program-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}
.program-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font:
    700 12px/1 Arial,
    sans-serif;
  transition:
    background 0.3s,
    transform 0.3s;
}
.program-card:hover .program-card__number {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(-7deg);
}
.program-card__body {
  position: absolute;
  inset-inline: 28px;
  bottom: 28px;
  transition: transform 0.4s;
}
.program-card:hover .program-card__body {
  transform: translateY(-8px);
}
.program-card__body small {
  color: var(--red);
  font:
    700 9px/1 Arial,
    sans-serif;
  letter-spacing: 0.15em;
}
.program-card h3 {
  margin: 12px 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.22;
}
.program-card p {
  margin: 0;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}
.tag-row {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}
.tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
}
.program-card__body > button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.program-card__body > button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.program-card:hover .program-card__body > button {
  background: var(--red);
  border-color: var(--red);
}
.program-card:hover .program-card__body > button svg {
  transform: rotate(135deg);
}

.impact {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.impact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(116, 0, 6, 0.82) 62%,
    rgba(236, 31, 43, 0.45)
  );
}
.impact__inner {
  position: relative;
  z-index: 1;
}
.impact h2 {
  margin: 30px 0 70px;
  max-width: 860px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}
.impact h2 span {
  color: var(--red);
  filter: brightness(1.4);
}
.impact__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  border-top: 1px solid var(--line-dark);
}
.impact__stats div {
  padding: 28px 26px 0 0;
  border-left: 1px solid var(--line-dark);
}
.impact__stats div:last-child {
  border-left: 0;
}
.impact__stats strong {
  font:
    700 clamp(44px, 5vw, 72px) / 1 Arial,
    sans-serif;
}
.impact__stats p {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.8;
}

.coaches {
  padding: 132px 0;
  background: var(--paper);
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.coach-card {
  position: relative;
  min-width: 0;
  padding: 12px 12px 24px;
  border: 1px solid var(--line-light);
  background: rgba(255, 253, 248, 0.7);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.coach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 31, 43, 0.5);
  box-shadow: 0 18px 42px rgba(9, 9, 9, 0.1);
}
.coach-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width 0.45s;
}
.coach-card:hover::after {
  width: 100%;
}
.coach-card > div {
  height: auto;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: #ccc;
}
.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition:
    transform 0.6s,
    filter 0.5s;
}
.coach-card:nth-child(1) img {
  object-position: 64% center;
}
.coach-card:nth-child(2) img {
  object-position: center 38%;
}
.coach-card:nth-child(3) img {
  object-position: 58% center;
}
.coach-card:nth-child(4) img {
  object-position: center center;
}
.coach-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.coach-card > div span {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font:
    700 11px/1 Arial,
    sans-serif;
  transition: transform 0.3s;
}
.coach-card:hover > div span {
  transform: rotate(-8deg) scale(1.08);
}
.coach-card h3 {
  margin: 18px 8px 4px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 20px;
}
.coach-card p {
  margin: 0 8px 5px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}
.coach-card small {
  display: block;
  margin-inline: 8px;
  color: var(--muted-light);
}

.schedule {
  padding: 150px 0;
  background: var(--black);
  color: white;
}
.schedule-tabs {
  display: flex;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 12px;
}
.schedule-tabs button {
  flex: 1;
  padding: 19px 12px;
  border: 0;
  border-top: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition:
    color 0.25s,
    background 0.25s,
    border-color 0.25s;
}
.schedule-tabs button:hover,
.schedule-tabs button.is-active {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--red);
}
.schedule-list article {
  display: grid;
  grid-template-columns: 80px 120px 1fr 1fr auto;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line-dark);
  transition:
    background 0.25s,
    padding 0.25s;
}
.schedule-list article:hover {
  padding-inline: 22px;
  background: rgba(236, 31, 43, 0.1);
}
.schedule-index {
  color: var(--red);
  font:
    700 10px/1 Arial,
    sans-serif;
}
.schedule-list time {
  font:
    700 25px/1 Arial,
    sans-serif;
}
.schedule-list h3 {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 21px;
}
.schedule-list p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.schedule-list button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.schedule-list button svg {
  width: 18px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  transform: rotate(180deg);
}

.membership {
  padding: 150px 0;
  background: var(--paper);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 68px;
  align-items: stretch;
}
.price-grid article {
  min-height: 560px;
  padding: 34px;
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--paper);
}
.price-grid article.is-featured {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-22px);
  box-shadow: 18px 18px 0 var(--ink);
}
.popular {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.price-grid article > small {
  color: var(--red);
  font:
    700 11px/1 Arial,
    sans-serif;
}
.price-grid .is-featured > small {
  color: white;
}
.price-grid h3 {
  margin: 30px 0 24px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 31px;
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.price strong {
  font:
    700 64px/0.9 Arial,
    sans-serif;
}
.price span {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted-light);
}
.is-featured .price span {
  color: rgba(255, 255, 255, 0.7);
}
.price-grid article > p {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
}
.price-grid .is-featured > p {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.74);
}
.price-grid ul {
  list-style: none;
  padding: 12px 0 28px;
  margin: 0;
  flex: 1;
}
.price-grid li {
  padding: 10px 0;
  font-size: 13px;
}
.price-grid li::before {
  content: "+";
  color: var(--red);
  font:
    800 15px/1 Arial,
    sans-serif;
  margin-left: 10px;
}
.price-grid .is-featured li::before {
  color: white;
}
.price-grid .button {
  width: 100%;
}
.price-grid .is-featured .button {
  background: white;
  color: var(--ink);
  border-color: white;
}

.locations {
  padding: 150px 0;
  color: white;
  background: linear-gradient(120deg, #b1000a, #260002 70%);
}
.locations__intro {
  max-width: 900px;
  margin-bottom: 72px;
}
.locations__intro h2 {
  margin: 28px 0 20px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}
.locations__intro h2 span {
  color: var(--red);
  filter: brightness(1.45);
}
.locations__intro p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.9;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.location-grid article {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.location-grid img,
.location-grid article > div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.location-grid img {
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  transition:
    transform 0.6s,
    filter 0.5s;
}
.location-grid article > div {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.12));
}
.location-grid article:hover img {
  transform: scale(1.06);
  filter: grayscale(0) sepia(0.25) saturate(1.2);
}
.location-grid article > span,
.location-grid h3,
.location-grid p,
.location-grid button {
  position: relative;
  z-index: 1;
}
.location-grid article > span {
  position: absolute;
  top: 28px;
  right: 28px;
  font:
    700 11px/1 Arial,
    sans-serif;
}
.location-grid h3 {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 52px;
}
.location-grid p {
  color: rgba(255, 255, 255, 0.65);
}
.location-grid button {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.location-grid button svg {
  width: 18px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  transform: rotate(180deg);
}

.faq {
  padding: 150px 0;
  background: var(--paper);
}
.faq__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 110px;
}
.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq__intro p {
  max-width: 330px;
  color: var(--muted-light);
  line-height: 1.8;
}
.faq__intro .button {
  margin-top: 22px;
}
.faq-list {
  border-top: 1px solid var(--line-light);
}
.faq-list article {
  border-bottom: 1px solid var(--line-light);
}
.faq-list article > button {
  width: 100%;
  min-height: 100px;
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  align-items: center;
  text-align: right;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.faq-list article > button span {
  color: var(--red);
  font:
    700 11px/1 Arial,
    sans-serif;
}
.faq-list article > button strong {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 18px;
}
.faq-list article > button i {
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-list article > button i::before,
.faq-list article > button i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s;
}
.faq-list article > button i::after {
  transform: rotate(90deg);
}
.faq-list article.is-open > button i::after {
  transform: rotate(0);
}
.faq-list article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.faq-list article > div p {
  overflow: hidden;
  margin: 0;
  padding: 0 60px 0 28px;
  color: var(--muted-light);
  line-height: 1.9;
}
.faq-list article.is-open > div {
  grid-template-rows: 1fr;
}
.faq-list article.is-open > div p {
  padding-bottom: 30px;
}

.final-cta {
  min-height: 780px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.final-cta > img,
.final-cta > div:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.final-cta > img {
  object-fit: cover;
}
.final-cta > div:first-of-type {
  background: linear-gradient(rgba(10, 0, 0, 0.72), rgba(114, 0, 6, 0.9));
}
.final-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta__content p {
  color: rgba(255, 255, 255, 0.68);
}
.final-cta h2 {
  margin: 18px 0 36px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(58px, 6.6vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.final-cta h2 span {
  color: var(--red);
  filter: brightness(1.4);
}

footer {
  padding: 70px max(32px, calc((100vw - 1320px) / 2)) 26px;
  background: var(--black);
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.brand--footer {
  justify-self: start;
}
.footer-top > p {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 22px;
  line-height: 1.6;
}
.footer-top > div {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.footer-top > div strong {
  font:
    700 22px/1 Arial,
    sans-serif;
}
.footer-top > div a {
  color: var(--red);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 55px 0;
  border-bottom: 1px solid var(--line-dark);
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links span {
  color: var(--red);
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
}
.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.25s;
}
.footer-links a:hover,
.footer-links button:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  pointer-events: none;
  visibility: hidden;
}
.trial-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}
.trial-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.3s;
}
.trial-modal.is-open .trial-modal__backdrop {
  opacity: 1;
}
.trial-modal__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(620px, 100%);
  padding: 65px;
  overflow-y: auto;
  background: var(--paper);
  transform: translateX(-102%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.trial-modal.is-open .trial-modal__panel {
  transform: none;
}
.trial-modal__close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}
.trial-modal__intro > span,
.success-state > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}
.trial-modal__intro h2,
.success-state h2 {
  margin: 22px 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}
.trial-modal__intro p,
.success-state p {
  color: var(--muted-light);
  line-height: 1.8;
}
.trial-modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}
.trial-modal label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 700;
}
.trial-modal input,
.trial-modal select {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.trial-modal input:focus,
.trial-modal select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(236, 31, 43, 0.1);
}
.trial-modal form .button,
.trial-modal form > small {
  grid-column: 1 / -1;
}
.trial-modal form > small {
  color: var(--muted-light);
  line-height: 1.6;
}
.success-state {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.success-state .brand-mark {
  border-color: var(--line-light);
  margin-bottom: 26px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .phone-link {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .menu-button {
    display: block;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section-heading > p {
    max-width: 600px;
  }
  .principle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .principle-grid article:nth-child(3) {
    border-left: 0;
  }
  .principle-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line-light);
  }
  .coach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq__grid {
    grid-template-columns: 340px 1fr;
    gap: 60px;
  }
}

@media (max-width: 780px) {
  .section-shell,
  .section-shell--wide,
  .hero__content {
    width: calc(100% - 36px);
  }
  .site-header {
    min-height: 66px;
    padding-inline: 18px;
    gap: 12px;
  }
  .brand-mark {
    width: 42px;
    height: 36px;
  }
  .brand-copy strong {
    font-size: 17px;
  }
  .brand-copy small {
    font-size: 6px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions .button {
    display: none;
  }
  .hero {
    min-height: 780px;
    height: 100svh;
  }
  .hero__image {
    object-position: 58% center;
  }
  .hero__red {
    background: linear-gradient(
      90deg,
      rgba(70, 0, 3, 0.95),
      rgba(180, 0, 8, 0.66)
    );
  }
  .hero::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 68%);
  }
  .hero__grid {
    background-size: 70px 70px;
  }
  .hero__content {
    margin-top: 40px;
  }
  .hero h1 {
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 1.12;
    margin-top: 20px;
  }
  .hero__content > p {
    font-size: 14px;
    line-height: 1.8;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero__proof {
    margin-top: 34px;
  }
  .hero__proof strong {
    font-size: 17px;
  }
  .hero__proof span {
    font-size: 9px;
  }
  .scroll-cue {
    display: none;
  }
  .ticker {
    height: 60px;
  }
  .contrast,
  .principles,
  .programs,
  .coaches,
  .schedule,
  .membership,
  .locations,
  .faq {
    padding: 96px 0;
  }
  .mega-title {
    font-size: clamp(34px, 8.8vw, 48px);
  }
  .section-lead {
    font-size: 15px;
  }
  .compare-grid,
  .program-grid,
  .price-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .compare-card {
    min-height: 470px;
    padding: 32px 26px;
  }
  .compare-card + .compare-card {
    border-right: 0;
    border-top: 1px solid var(--line-dark);
  }
  .compare-card h3 {
    font-size: 40px;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle-grid article,
  .principle-grid article:nth-child(3) {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }
  .principle-grid article:first-child {
    border-top: 0;
  }
  .principle-grid h3 {
    margin-top: 40px;
  }
  .program-card {
    min-height: 580px;
  }
  .impact {
    min-height: 820px;
  }
  .impact h2 {
    font-size: 46px;
  }
  .impact__stats {
    grid-template-columns: 1fr;
  }
  .impact__stats div {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .impact__stats strong {
    font-size: 44px;
  }
  .coach-grid {
    grid-template-columns: 1fr;
  }
  .coach-card > div {
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .schedule-tabs {
    overflow-x: auto;
  }
  .schedule-tabs button {
    min-width: 96px;
  }
  .schedule-list article {
    grid-template-columns: 40px 82px 1fr;
    padding: 22px 0;
  }
  .schedule-list article:hover {
    padding-inline: 10px;
  }
  .schedule-list p {
    grid-column: 3;
    margin: 5px 0;
  }
  .schedule-list button {
    grid-column: 3;
    justify-self: start;
    margin-top: 8px;
  }
  .price-grid article.is-featured {
    transform: none;
    box-shadow: 10px 10px 0 var(--ink);
    margin-bottom: 10px;
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .faq__intro {
    position: static;
  }
  .faq-list article > button {
    grid-template-columns: 42px 1fr 24px;
    min-height: 92px;
  }
  .faq-list article > button strong {
    font-size: 15px;
  }
  .faq-list article > div p {
    padding-right: 42px;
  }
  .final-cta {
    min-height: 680px;
  }
  .final-cta h2 {
    font-size: 56px;
  }
  footer {
    padding-inline: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-top > div {
    justify-self: start;
    text-align: right;
  }
  .footer-links {
    gap: 20px;
  }
  .trial-modal__panel {
    padding: 82px 24px 36px;
  }
  .trial-modal form {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   NABD v3 — Motion & Depth Layer
   (مضاف فوق الأنماط الأصلية — لا يعدّل القواعد السابقة)
   ============================================================ */

/* ---------- 1) شاشة الافتتاح (Preloader) ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition:
    transform 0.85s cubic-bezier(0.75, 0, 0.2, 1),
    visibility 0s 0.85s;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: white;
}
.preloader svg {
  width: 128px;
  fill: none;
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 14px rgba(236, 31, 43, 0.55));
}
.preloader span {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.01em;
}
.preloader path {
  stroke-dasharray: var(--len, 118);
  animation: nabd-draw-loop 1.5s linear infinite;
}
.preloader.is-done {
  transform: translateY(-101%);
  visibility: hidden;
}
@keyframes nabd-draw-loop {
  from {
    stroke-dashoffset: var(--len, 118);
  }
  to {
    stroke-dashoffset: calc(var(--len, 118) * -1);
  }
}

/* رسم شعار الهيدر مرة واحدة بعد التحميل */
body.is-loaded .site-header .brand-mark path {
  stroke-dasharray: var(--len, 118);
  animation: nabd-draw-once 1.25s cubic-bezier(0.5, 0, 0.2, 1) 0.15s backwards;
}
@keyframes nabd-draw-once {
  from {
    stroke-dashoffset: var(--len, 118);
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* ---------- 2) دخول الهيرو المتسلسل ---------- */
[data-hero] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-hero].is-visible {
  opacity: 1;
  transform: none;
}
a.scroll-cue[data-hero] {
  transform: translateY(14px);
}

/* ---------- 3) العناوين الضخمة: دخول سطر-بسطر بقصّ (clip) ---------- */
.mega-title > span,
.mega-title > strong,
h1[data-hero] > span,
h1[data-hero] > strong {
  clip-path: inset(-12% -14% 110% -14%);
  transform: translateY(0.55em);
  transition:
    clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.mega-title.is-visible > *,
h1[data-hero].is-visible > * {
  clip-path: inset(-12% -14% -16% -14%);
  transform: none;
}
.mega-title.is-visible > span,
h1[data-hero].is-visible > span {
  transition-delay: 0.05s;
}
.mega-title.is-visible > strong,
h1[data-hero].is-visible > strong {
  transition-delay: 0.2s;
}

/* ---------- 4) مشهد النبض ثلاثي الأبعاد في الهيرو ---------- */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.8s ease 0.35s;
  mix-blend-mode: screen;
}
.hero__scene.is-on {
  opacity: 0.95;
}
.hero__scene canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* عمق الهيرو مع حركة الماوس (طبقات بسرعات مختلفة) */
.hero__image {
  transform: translate3d(
      calc(var(--hx, 0) * -14px),
      calc(var(--hy, 0) * -9px + var(--py, 0px)),
      0
    )
    scale(1.07);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hero__ghost {
  transform: translate3d(
    calc(var(--hx, 0) * 32px),
    calc(var(--hy, 0) * 18px),
    0
  );
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.hero__grid {
  transform: translate3d(
    calc(var(--hx, 0) * 18px),
    calc(var(--hy, 0) * 10px),
    0
  );
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 5) بارالاكس صور الأقسام ---------- */
.impact > img,
.final-cta > img {
  transform: translate3d(0, var(--py, 0px), 0) scale(1.16);
  will-change: transform;
}

/* ---------- 6) أزرار مغناطيسية ---------- */
.button {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
}
.button:active {
  transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) + 2px), 0);
}

/* ---------- 7) إمالة الكروت ثلاثية الأبعاد + لمعة ---------- */
.tilt {
  transform: perspective(1050px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
}
[data-reveal]:not(.is-visible).tilt {
  transform: translateY(38px);
}
.price-grid article.is-featured.tilt {
  transform: perspective(1050px) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg)) translateY(-22px);
}
.tilt__glare {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s;
  mix-blend-mode: screen;
  background: radial-gradient(
    340px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(255, 255, 255, 0.2),
    transparent 62%
  );
}
.tilt:hover .tilt__glare {
  opacity: 1;
}
/* ---------- 8) لمسات دقيقة ---------- */
.scroll-cue i {
  animation: nabd-cue 2.2s ease-in-out infinite;
}
@keyframes nabd-cue {
  0%,
  100% {
    transform: scaleY(0.35);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
}

/* ---------- 9) احترام تقليل الحركة ---------- */
@media (prefers-reduced-motion: reduce) {
  .preloader,
  .hero__scene {
    display: none;
  }
  [data-hero] {
    opacity: 1;
    transform: none;
  }
  .mega-title > span,
  .mega-title > strong,
  h1[data-hero] > span,
  h1[data-hero] > strong {
    clip-path: none;
    transform: none;
  }
  .hero__image,
  .hero__ghost,
  .hero__grid,
  .impact > img,
  .final-cta > img,
  .button,
  .tilt {
    transform: none;
  }
  .site-header .brand-mark path,
  .scroll-cue i {
    animation: none !important;
  }
}
