/* ZaynApp — luxury product landing */
:root {
  --cream: #f3e8dc;
  --cream-deep: #e5d4c2;
  --paper: #fffcf7;
  --ink: #120e0c;
  --ink-2: #2a211c;
  --muted: #64564e;
  --subtle: #74655b;
  --line: #dfd0bf;
  --line-2: #c9b6a3;
  --rose: #7e3543;
  --rose-deep: #5a2230;
  --rose-mid: #9b4d5b;
  --rose-wash: #f4e6e9;
  --gold: #b8954e;
  --gold-deep: #8a6d38;
  --champagne: #e8d5b5;
  --font-d: "Cormorant Garamond", "Noto Sans Arabic", Georgia, serif;
  --font-b: "Outfit", "Noto Sans Arabic", system-ui, sans-serif;
  --max: 1160px;
  --nav: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --phone-ar: 390 / 844;
  --device-r: 2.25rem;
  --screen-r: 1.65rem;
  --bezel: linear-gradient(158deg, #4c373b 0%, #1b1215 46%, #0b0809 100%);
  --shadow-device:
    0 42px 84px -28px rgb(16 12 10 / 0.52),
    0 0 0 1px rgb(16 12 10 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
  .hero-enter,
  .reveal,
  .device-center,
  .device-wing,
  .atmosphere-orb {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .scroll-progress {
    display: none;
  }
}

body {
  font-family: var(--font-b);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: rgb(126 53 67 / 0.18);
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Atmosphere ── */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 60% at 4% -15%, rgb(184 149 78 / 0.3), transparent 52%),
    radial-gradient(ellipse 75% 55% at 100% -5%, rgb(126 53 67 / 0.22), transparent 48%),
    radial-gradient(ellipse 55% 35% at 50% 105%, rgb(255 255 255 / 0.55), transparent 55%),
    linear-gradient(168deg, #fbf4eb 0%, var(--cream) 40%, #e4d3c1 100%);
}

.atmosphere-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.48;
  will-change: transform;
}

.atmosphere-orb-a {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  top: -12%;
  right: -8%;
  background: rgb(126 53 67 / 0.36);
  animation: driftA 30s ease-in-out infinite alternate;
}

.atmosphere-orb-b {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  bottom: 15%;
  left: -10%;
  background: rgb(184 149 78 / 0.28);
  animation: driftB 36s ease-in-out infinite alternate;
}

.atmosphere-orb-c {
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  top: 48%;
  right: 22%;
  background: rgb(232 213 181 / 0.38);
  opacity: 0.32;
  animation: driftA 24s ease-in-out infinite alternate-reverse;
}

@keyframes driftA {
  to {
    transform: translate3d(28px, -36px, 0) scale(1.08);
  }
}
@keyframes driftB {
  to {
    transform: translate3d(-22px, 28px, 0) scale(1.06);
  }
}

.atmosphere-grain {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform-origin: left;
  pointer-events: none;
  box-shadow: 0 0 12px rgb(126 53 67 / 0.35);
}

html[dir="rtl"] .scroll-progress {
  left: auto;
  right: 0;
  transform-origin: right;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav);
  background: rgb(243 232 220 / 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgb(223 208 191 / 0.45);
  transition:
    background 0.35s ease,
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
}

.nav.is-scrolled {
  background: rgb(243 232 220 / 0.94);
  border-color: rgb(223 208 191 / 0.9);
  box-shadow: 0 16px 48px rgb(16 12 10 / 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  height: 2.15rem;
  width: 2.15rem;
  object-fit: contain;
  border-radius: 0.72rem;
  display: block;
}
.brand-word.sr-only {
  /* keep for a11y if used */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgb(126 53 67 / 0.22);
  background: #fff;
}

.brand-word {
  font-family: var(--font-d);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 1.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover {
  color: var(--rose);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.9rem 0.42rem 0.48rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgb(16 12 10 / 0.05);
  transition:
    transform 0.25s var(--ease),
    border-color 0.2s ease,
    box-shadow 0.25s ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  border-color: var(--rose);
  box-shadow: 0 8px 22px rgb(126 53 67 / 0.12);
}

.lang-switch-badge {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--rose-mid), var(--rose));
  color: #fffaf7;
  font-family: var(--font-d);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.lang-switch:hover .lang-switch-badge {
  transform: rotate(-10deg) scale(1.06);
}

html[dir="rtl"] .lang-switch-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-cta {
  display: none;
  padding: 0.58rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--rose-mid), var(--rose));
  color: #fffaf7;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 8px 22px rgb(126 53 67 / 0.28);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgb(126 53 67 / 0.36);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(180deg, var(--rose-mid), var(--rose));
  color: #fffaf7;
  box-shadow:
    0 16px 36px rgb(126 53 67 / 0.34),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgb(255 255 255 / 0.24) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(130%);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgb(126 53 67 / 0.42);
  background: linear-gradient(180deg, #a85664, var(--rose-deep));
}

.btn-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease);
}

.btn-primary:hover .btn-chevron {
  transform: rotate(45deg) translate(2px, -2px);
}

html[dir="rtl"] .btn-chevron {
  transform: rotate(-135deg);
}

html[dir="rtl"] .btn-primary:hover .btn-chevron {
  transform: rotate(-135deg) translate(2px, -2px);
}

.btn-ghost {
  background: rgb(255 252 248 / 0.92);
  border: 1px solid var(--line-2);
  color: var(--ink);
  box-shadow: 0 4px 16px rgb(16 12 10 / 0.04);
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.btn-on-dark {
  background: #fffaf7;
  color: var(--rose);
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.22);
}

.btn-on-dark:hover {
  background: var(--champagne);
}

/* ── Device frames ── */
.device {
  position: relative;
  width: 100%;
}

.device-frame {
  position: relative;
  background: var(--bezel);
  border-radius: var(--device-r);
  padding: 10px;
  box-shadow: var(--shadow-device);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.device-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.15);
  z-index: 4;
}

.device-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: var(--screen-r);
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    128deg,
    rgb(255 255 255 / 0.14) 0%,
    transparent 40%
  );
}

.device-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 17px;
  background: #0a0708;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.05);
  pointer-events: none;
}

.device-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--phone-ar);
  object-fit: cover;
  object-position: top center;
  border-radius: var(--screen-r);
  background: #e8d9ca;
  position: relative;
  z-index: 1;
}

.device-center {
  width: min(286px, 72vw);
  z-index: 5;
}

.device-lg {
  width: min(258px, 64vw);
}

.device-md {
  width: min(232px, 42vw);
}

.device-sm {
  width: min(168px, 100%);
}

.device-sm .device-frame {
  padding: 7px;
  border-radius: 1.55rem;
}

.device-sm .device-frame img {
  border-radius: 1.15rem;
}

.device-sm .device-island {
  top: 13px;
  height: 12px;
}

.device-sm .device-frame::after {
  inset: 7px;
  border-radius: 1.15rem;
}

.device-wing {
  width: min(232px, 56vw);
  position: absolute;
  top: 50%;
  z-index: 1;
}

/* ── Hero ── */
.hero {
  padding: 2.6rem 0 4rem;
}

.hero-layout {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 2rem 3.25rem;
    min-height: min(700px, calc(92dvh - var(--nav)));
  }
}

.hero-enter {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: enterUp 0.85s var(--ease-out) forwards;
}

.hero-enter:nth-child(1) {
  animation-delay: 0.06s;
}
.hero-enter:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-enter:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-enter:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-enter:nth-child(5) {
  animation-delay: 0.38s;
}

@keyframes enterUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.48rem 1.05rem 0.48rem 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5e8eb, #faf3e9);
  border: 1px solid rgb(126 53 67 / 0.14);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgb(126 53 67 / 0.08);
}

html[dir="rtl"] .eyebrow-pill {
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.82rem;
  padding: 0.5rem 0.75rem 0.5rem 1.05rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgb(126 53 67 / 0.14);
  animation: livePulse 2.4s ease-in-out infinite;
}

@keyframes livePulse {
  50% {
    box-shadow: 0 0 0 8px rgb(126 53 67 / 0.04);
  }
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.85rem, 5.8vw, 4.5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.045em;
  max-width: 11ch;
}

html[dir="rtl"] .hero h1 {
  letter-spacing: -0.01em;
  line-height: 1.14;
  max-width: 10ch;
}

.h1-line {
  display: block;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(
    118deg,
    var(--rose-deep),
    var(--rose) 35%,
    #b06a4a 65%,
    var(--gold-deep)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s ease infinite;
}

@keyframes sheen {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-lede {
  margin-top: 1.3rem;
  max-width: 32rem;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.72;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2.25rem;
  max-width: 29rem;
}

.stat-row li {
  min-width: 0;
  padding: 1rem 0.85rem;
  border-radius: 1.15rem;
  background: linear-gradient(165deg, rgb(255 252 248 / 0.98), rgb(250 241 230 / 0.92));
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.55) inset,
    0 12px 30px -16px rgb(16 12 10 / 0.14);
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s ease,
    box-shadow 0.35s ease;
}

.stat-row li:hover {
  transform: translateY(-4px);
  border-color: rgb(126 53 67 / 0.24);
  box-shadow: 0 20px 40px -18px rgb(126 53 67 / 0.2);
}

.stat-row strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.stat-row span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  color: var(--subtle);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero stage */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  opacity: 0;
  animation: enterUp 1s var(--ease-out) 0.18s forwards;
}

.stage-bloom {
  position: absolute;
  width: 74%;
  height: 52%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(126 53 67 / 0.28), transparent 68%);
  filter: blur(22px);
  animation: bloom 7s ease-in-out infinite;
}

@keyframes bloom {
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgb(126 53 67 / 0.1);
  pointer-events: none;
}

.stage-ring-1 {
  width: min(380px, 78%);
  aspect-ratio: 1;
  animation: ringPulse 8s ease-in-out infinite;
}

.stage-ring-2 {
  width: min(480px, 92%);
  aspect-ratio: 1;
  border-color: rgb(184 149 78 / 0.14);
  animation: ringPulse 10s ease-in-out infinite reverse;
}

@keyframes ringPulse {
  50% {
    transform: scale(1.04);
    opacity: 0.65;
  }
}

.device-orbit {
  position: relative;
  width: min(540px, 100%);
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.device-wing-l {
  left: 0;
  transform: translateY(-48%) rotate(-11deg);
}

.device-wing-r {
  right: 0;
  transform: translateY(-42%) rotate(11deg);
  z-index: 2;
}

html[dir="rtl"] .device-wing-l {
  left: auto;
  right: 0;
  transform: translateY(-48%) rotate(11deg);
}

html[dir="rtl"] .device-wing-r {
  right: auto;
  left: 0;
  transform: translateY(-42%) rotate(-11deg);
}

@media (prefers-reduced-motion: no-preference) {
  .device-center {
    animation: floatMain 7.5s ease-in-out infinite;
  }
  .device-wing-l {
    animation: floatWingL 8.5s ease-in-out infinite;
  }
  .device-wing-r {
    animation: floatWingR 8s ease-in-out infinite;
  }
}

@keyframes floatMain {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes floatWingL {
  0%,
  100% {
    transform: translateY(-48%) rotate(-11deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-48%) rotate(-11deg) translate3d(0, -9px, 0);
  }
}

@keyframes floatWingR {
  0%,
  100% {
    transform: translateY(-42%) rotate(11deg) translate3d(0, 0, 0);
  }
  50% {
    transform: translateY(-42%) rotate(11deg) translate3d(0, -11px, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html[dir="rtl"] .device-wing-l {
    animation-name: floatWingR;
  }
  html[dir="rtl"] .device-wing-r {
    animation-name: floatWingL;
  }
}

@media (max-width: 1039px) {
  .hero-stage {
    min-height: 0;
    padding: 0.5rem 0 1rem;
  }
  .device-orbit {
    height: auto;
    width: auto;
  }
  .device-wing {
    display: none;
  }
  .stage-ring {
    display: none;
  }
  .device-center {
    width: min(274px, 70vw);
  }
}

/* ── Ribbon ── */
.ribbon {
  overflow: hidden;
  position: relative;
  background: linear-gradient(105deg, var(--rose-deep), var(--rose) 42%, #8a4538);
  color: #fff8f3;
  padding: 1.05rem 0;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.1);
}

.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ribbon::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--rose-deep), transparent);
}

.ribbon::after {
  inset-inline-end: 0;
  background: linear-gradient(to left, #8a4538, transparent);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbon 40s linear infinite;
  will-change: transform;
}

.ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

html[dir="rtl"] .ribbon-track {
  animation-direction: reverse;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.85rem;
  padding-inline: 1rem;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[dir="rtl"] .ribbon-track span {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.84rem;
}

.ribbon-track i {
  font-style: normal;
  color: var(--champagne);
  font-size: 0.48rem;
}

@keyframes ribbon {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── Blocks ── */
.block {
  padding: 5.5rem 0;
  position: relative;
}

.block-ink {
  background:
    radial-gradient(ellipse 60% 45% at 92% 0%, rgb(184 149 78 / 0.14), transparent 50%),
    radial-gradient(ellipse 45% 40% at 0% 100%, rgb(126 53 67 / 0.18), transparent 48%),
    linear-gradient(165deg, #100c0a 0%, #1a1315 55%, #120e10 100%);
  color: #f8f0e8;
}

.block-cta {
  padding-top: 1.25rem;
  padding-bottom: 5rem;
}

.block-head {
  max-width: 36rem;
  margin-bottom: 2.65rem;
}

.block-head h2,
.clinic-layout h2,
.finale h2 {
  font-family: var(--font-d);
  font-size: clamp(2.3rem, 4.2vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.06;
}

html[dir="rtl"] .block-head h2,
html[dir="rtl"] .clinic-layout h2,
html[dir="rtl"] .finale h2 {
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.block-head p:not(.kicker),
.block-lede {
  margin-top: 0.95rem;
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.68;
  font-weight: 400;
}

.block-ink .block-head p:not(.kicker),
.block-ink .block-lede {
  color: rgb(248 240 232 / 0.66);
}

.block-ink .block-head h2,
.block-ink .clinic-layout h2 {
  color: #fffaf5;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

html[dir="rtl"] .kicker {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.84rem;
}

.kicker::before {
  content: "";
  width: 1.25rem;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  flex-shrink: 0;
  transition: width 0.45s var(--ease);
}

.reveal.in .kicker::before {
  width: 2rem;
}

.block-ink .kicker {
  color: var(--champagne);
}

.block-ink .kicker::before {
  background: linear-gradient(90deg, var(--champagne), var(--gold));
}

/* Feature duo */
.feature-duo {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 1.6rem;
  margin-bottom: 1.4rem;
  border-radius: 2rem;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgb(126 53 67 / 0.09), transparent 55%),
    linear-gradient(165deg, #fffefb, #f5ede2);
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.55) inset,
    0 28px 60px -32px rgb(16 12 10 / 0.18);
}

@media (min-width: 840px) {
  .feature-duo {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    padding: 2.5rem 2.75rem;
  }
}

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

.feature-duo-device .device:hover .device-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 52px 96px -28px rgb(16 12 10 / 0.55),
    0 0 0 1px rgb(16 12 10 / 0.16);
}

.micro {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

html[dir="rtl"] .micro {
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.82rem;
}

.feature-duo-copy h3 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 2.9vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.feature-duo-copy > p {
  margin-top: 0.75rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.ticks {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.ticks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

html[dir="rtl"] .ticks li {
  transform: translateX(10px);
}

.reveal.in .ticks li {
  opacity: 1;
  transform: none;
}

.reveal.in .ticks li:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal.in .ticks li:nth-child(2) {
  transition-delay: 0.18s;
}
.reveal.in .ticks li:nth-child(3) {
  transition-delay: 0.26s;
}

.ticks li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgb(126 53 67 / 0.12);
  flex-shrink: 0;
}

/* Shot grid */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

@media (min-width: 880px) {
  .shot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.shot {
  min-width: 0;
  padding: 1.25rem 0.95rem 1.3rem;
  border-radius: 1.5rem;
  text-align: center;
  background: linear-gradient(168deg, #fffefb, #f8f0e6);
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease),
    border-color 0.25s ease,
    box-shadow 0.4s ease;
}

.shot:hover {
  transform: translateY(-10px);
  border-color: rgb(126 53 67 / 0.26);
  box-shadow: 0 28px 56px -26px rgb(126 53 67 / 0.22);
}

.shot:hover .device-frame {
  transform: scale(1.03);
}

.shot .device {
  margin: 0 auto 0.95rem;
}

.shot h3 {
  font-family: var(--font-d);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.shot p {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--subtle);
  line-height: 1.4;
  padding-inline: 0.2rem;
}

/* Path steps */
.path {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 800px) {
  .path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.path-card {
  min-width: 0;
  padding: 1.6rem 1.3rem;
  border-radius: 1.4rem;
  background: rgb(255 255 255 / 0.035);
  border: 1px solid rgb(255 255 255 / 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease;
}

.path-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 14%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(232 213 181 / 0.5),
    transparent
  );
}

.path-card:hover {
  transform: translateY(-6px);
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(232 213 181 / 0.24);
}

.path-n {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 500;
  color: var(--champagne);
  line-height: 1;
  transition: transform 0.35s var(--ease), color 0.3s ease;
}

.path-card:hover .path-n {
  transform: scale(1.08);
  color: #f2e2c4;
}

.path-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fffaf5;
}

.path-card p {
  font-size: 0.9rem;
  color: rgb(248 240 232 / 0.6);
  line-height: 1.55;
}

/* Bento features */
.bento {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bento-card {
  min-width: 0;
  padding: 1.6rem 1.4rem;
  border-radius: 1.45rem;
  background: linear-gradient(165deg, #fffefb, #f8f0e6);
  border: 1px solid var(--line);
  transition:
    transform 0.4s var(--ease),
    border-color 0.25s ease,
    box-shadow 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgb(126 53 67 / 0.26);
  box-shadow: 0 28px 56px -26px rgb(126 53 67 / 0.2);
}

.bento-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.05rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--rose-wash), #faf0e4);
  color: var(--rose);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgb(126 53 67 / 0.1);
  transition: transform 0.4s var(--ease);
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-5deg);
}

.bento-card h3 {
  margin-bottom: 0.4rem;
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.bento-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
}

/* Product strip */
.product-strip {
  margin-top: 3rem;
  padding: 2.1rem 1.5rem 1.85rem;
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgb(184 149 78 / 0.14), transparent 55%),
    linear-gradient(165deg, #1a1214, #271b1e);
  color: #f8f0e8;
  border: 1px solid rgb(255 255 255 / 0.06);
  box-shadow: 0 32px 70px -32px rgb(16 12 10 / 0.45);
}

.product-strip .kicker {
  color: var(--champagne);
}

.product-strip .kicker::before {
  background: var(--champagne);
}

.product-strip-head h3 {
  margin-bottom: 1.55rem;
  font-family: var(--font-d);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #fffaf5;
  letter-spacing: -0.02em;
}

.product-strip-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 600px) {
  .product-strip-row {
    grid-template-columns: 1fr;
    max-width: 200px;
    margin-inline: auto;
  }
}

.product-strip-row figure {
  text-align: center;
  min-width: 0;
  transition: transform 0.4s var(--ease);
}

.product-strip-row figure:hover {
  transform: translateY(-8px);
}

.product-strip-row .device {
  margin-inline: auto;
}

.product-strip-row figcaption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgb(248 240 232 / 0.72);
}

/* Pullquote */
.pullquote {
  margin-top: 2.75rem;
  padding: 2.75rem 2rem;
  border-radius: 1.7rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgb(126 53 67 / 0.12), transparent 55%),
    linear-gradient(145deg, #f6e9ec, #faf3e9);
  border: 1px solid rgb(126 53 67 / 0.1);
  box-shadow: 0 28px 56px -30px rgb(126 53 67 / 0.2);
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 1.3rem;
  font-family: var(--font-d);
  font-size: 5.5rem;
  line-height: 1;
  color: rgb(126 53 67 / 0.1);
  pointer-events: none;
}

html[dir="rtl"] .pullquote::before {
  left: auto;
  right: 1.3rem;
  content: "”";
}

.pullquote p {
  position: relative;
  max-width: 34rem;
  margin-inline: auto;
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.32;
}

html[dir="rtl"] .pullquote p {
  font-style: normal;
}

.pullquote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-b);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

html[dir="rtl"] .pullquote cite {
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Clinic */
.clinic-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .clinic-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3.25rem;
  }
}

.point-list {
  margin-top: 1.55rem;
  display: grid;
  gap: 0.75rem;
}

.point-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgb(248 240 232 / 0.9);
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

html[dir="rtl"] .point-list li {
  transform: translateX(12px);
}

.reveal.in .point-list li {
  opacity: 1;
  transform: none;
}

.reveal.in .point-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal.in .point-list li:nth-child(2) {
  transition-delay: 0.18s;
}
.reveal.in .point-list li:nth-child(3) {
  transition-delay: 0.26s;
}

.point-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgb(232 213 181 / 0.14);
  flex-shrink: 0;
}

.clinic-devices {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.clinic-devices .device:hover .device-frame {
  transform: translateY(-10px);
}

.device-raised {
  margin-top: 1.85rem;
}

/* Finale CTA */
.finale {
  padding: 3.85rem 2rem;
  border-radius: 2.1rem;
  text-align: center;
  color: #fffaf6;
  background: linear-gradient(135deg, #2a1117 0%, var(--rose-deep) 38%, var(--rose) 100%);
  box-shadow: 0 40px 80px -28px rgb(90 36 48 / 0.58);
  position: relative;
  overflow: hidden;
}

.finale::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 130%;
  top: -45%;
  inset-inline-start: -22%;
  background: radial-gradient(circle, rgb(232 213 181 / 0.34), transparent 65%);
  pointer-events: none;
  animation: finaleGlow 12s ease-in-out infinite alternate;
}

@keyframes finaleGlow {
  to {
    transform: translate3d(14%, 10%, 0);
    opacity: 0.8;
  }
}

.finale-kicker {
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
}

html[dir="rtl"] .finale-kicker {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.86rem;
}

.finale h2 {
  position: relative;
  max-width: 15ch;
  margin-inline: auto;
  color: #fffaf6;
}

.finale > p {
  position: relative;
  max-width: 30rem;
  margin: 1rem auto 1.7rem;
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.92;
}

.finale .btn {
  position: relative;
}

.finale-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.25rem;
}

.btn-ghost-on-dark {
  background: transparent;
  color: #fffaf6;
  border: 1px solid rgb(255 250 246 / 0.35);
  box-shadow: none;
}

.btn-ghost-on-dark:hover {
  background: rgb(255 250 246 / 0.1);
  border-color: rgb(255 250 246 / 0.55);
  color: #fffaf6;
}

/* Footer */
.site-footer {
  padding: 4rem 0 2.5rem;
  background:
    linear-gradient(180deg, transparent, rgb(226 210 194 / 0.5) 6%),
    linear-gradient(180deg, #e1d1c0, #d4c3b1);
  border-top: 1px solid var(--line);
}

.footer-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.15rem;
  margin-bottom: 1.65rem;
}

.footer-wordmark {
  font-family: var(--font-d);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-scope {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rose);
}

.footer-blurb {
  margin-top: 0.35rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.license-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgb(255 252 248 / 0.94);
  border: 1px solid var(--line-2);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgb(16 12 10 / 0.06);
}

.license-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  animation: livePulse 2.6s ease-in-out infinite;
}

.license-panel {
  padding: 1.65rem 1.5rem;
  border-radius: 1.55rem;
  background: linear-gradient(165deg, #fffefb, #fff8f0);
  border: 1px solid var(--line-2);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.55) inset,
    0 22px 48px -28px rgb(16 12 10 / 0.15);
}

.license-panel > h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--subtle);
}

html[dir="rtl"] .license-panel > h3 {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.82rem;
}

.license-panel > h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.license-grid {
  display: grid;
  gap: 1.1rem 1.5rem;
}

@media (min-width: 640px) {
  .license-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .license-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.license-grid dt {
  margin-bottom: 0.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
}

html[dir="rtl"] .license-grid dt {
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.76rem;
}

.license-grid dd {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.dd-ar {
  display: block;
  margin-top: 0.25rem;
  direction: rtl;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.35rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--subtle);
}

/* ── Reveals ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(3px);
    transition:
      opacity 0.75s var(--ease-out),
      transform 0.75s var(--ease-out),
      filter 0.75s var(--ease-out);
  }

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

  .shot-grid .shot.reveal:nth-child(1) {
    transition-delay: 0.02s;
  }
  .shot-grid .shot.reveal:nth-child(2) {
    transition-delay: 0.08s;
  }
  .shot-grid .shot.reveal:nth-child(3) {
    transition-delay: 0.14s;
  }
  .shot-grid .shot.reveal:nth-child(4) {
    transition-delay: 0.2s;
  }

  .bento .bento-card.reveal:nth-child(1) {
    transition-delay: 0.02s;
  }
  .bento .bento-card.reveal:nth-child(2) {
    transition-delay: 0.07s;
  }
  .bento .bento-card.reveal:nth-child(3) {
    transition-delay: 0.12s;
  }
  .bento .bento-card.reveal:nth-child(4) {
    transition-delay: 0.17s;
  }
  .bento .bento-card.reveal:nth-child(5) {
    transition-delay: 0.22s;
  }
  .bento .bento-card.reveal:nth-child(6) {
    transition-delay: 0.27s;
  }

  .path .path-card.reveal:nth-child(1) {
    transition-delay: 0.02s;
  }
  .path .path-card.reveal:nth-child(2) {
    transition-delay: 0.08s;
  }
  .path .path-card.reveal:nth-child(3) {
    transition-delay: 0.14s;
  }
  .path .path-card.reveal:nth-child(4) {
    transition-delay: 0.2s;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}


.footer-intermediary,
.hero-note,
.cta-note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--subtle);
  margin: 0.65rem 0 0;
  max-width: 36rem;
}
.hero-note {
  margin-top: 0.85rem;
  opacity: 0.95;
}
.cta-note {
  margin: 0.75rem auto 0;
  text-align: center;
  color: rgb(255 250 246 / 0.72);
}
.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-legal-links a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
}
.footer-legal-links a:hover {
  text-decoration: underline;
}
.footer-meta {
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
