/* ============================================================================
   Fluent landing — single-page funnel.
   - RTL-first (matches app's Arabic default)
   - Mobile-first responsive scaling
   - Color palette pulled from the mobile app's purple theme
   ============================================================================ */

:root {
  /* Brand */
  --color-bg:           #0E0B1F;
  --color-bg-elevated:  #1A1730;
  --color-surface:      #211C3A;
  --color-border:       rgba(255, 255, 255, 0.08);

  /* Primary purple — same as the mobile app */
  --color-primary:        #7C5CFF;
  --color-primary-strong: #5B4FD4;
  --color-primary-glow:   rgba(124, 92, 255, 0.45);
  /* Lighter face of the primary for gradients / highlights */
  --color-primary-soft:   #A990FF;

  /* Text */
  --color-text:        #FFFFFF;
  --color-text-muted:  rgba(255, 255, 255, 0.65);
  --color-text-faint:  rgba(255, 255, 255, 0.4);

  /* Accents */
  --color-accent:      #FFC857; /* warm gold — used outside the hero title */
  --color-locked:      rgba(255, 255, 255, 0.08);
  --color-locked-text: rgba(255, 255, 255, 0.5);

  /* Hero gradient text — purples only (#5B4FD4 → #7C5CFF → lilac) */
  --gradient-title: linear-gradient(
    125deg,
    var(--color-primary-strong) 0%,
    var(--color-primary) 48%,
    var(--color-primary-soft) 100%
  );

  /* Layout */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  28px;

  --video-aspect: 16 / 9;

  --shadow-glow:   0 12px 40px var(--color-primary-glow);
  --shadow-card:   0 8px 30px rgba(0, 0, 0, 0.4);
}

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

html,
body {
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Ambient vignette + static geometric backdrop (dots + faint grid — no motion). */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* First layers paint on top: soft purple glows stay above the mesh. */
  background-image:
    radial-gradient(ellipse 140% 80% at 50% -12%, rgba(124, 92, 255, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse 120% 75% at 50% 108%, rgba(91, 79, 212, 0.088) 0%, transparent 50%),
    repeating-linear-gradient(
      transparent,
      transparent 63px,
      rgba(124, 92, 255, 0.055) 63px,
      rgba(124, 92, 255, 0.055) 64px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 63px,
      rgba(124, 92, 255, 0.048) 63px,
      rgba(124, 92, 255, 0.048) 64px
    ),
    radial-gradient(rgba(255, 255, 255, 0.038) 0.92px, transparent 1.08px);
  background-repeat: no-repeat, no-repeat, repeat, repeat, repeat;
  background-size:
    100% 100%,
    100% 100%,
    auto,
    auto,
    38px 38px;
  z-index: 0;
}

/* Page shell --------------------------------------------------------------- */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Logo strip — mobile only (no side ornaments; gutters hidden < 600px) */
.mobileBrand {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2px 0 4px;
}

.mobileBrand__img {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 18px rgba(124, 92, 255, 0.32));
}

/* Hero --------------------------------------------------------------------- */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 4px 0 4px;
}

.hero__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: var(--color-text);
  max-width: 22ch;
}

.hero__title-accent {
  display: inline-block;
  background: var(--gradient-title);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 38ch;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Use a CSS pseudo-element for the bullet so it sits naturally in RTL
   without flipping in unexpected ways. */
.hero__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  flex: 0 0 auto;
  box-shadow: 0 0 8px var(--color-primary-glow);
}

/* Scroll anchor (e.g. deep links) */
#funnelVideo {
  scroll-margin-top: 24px;
  scroll-margin-bottom: 20px;
}

/* Video stage: reel in the center, decorative English “speech” in side gutters */
.video.videoStage {
  width: 100%;
}

.videoStage__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px 18px;
  width: 100%;
  max-width: min(920px, 100%);
  margin-inline: auto;
  align-items: stretch;
}

.videoStage__main {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: min-content;
  max-width: 100%;
}

.videoStage__gutter {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: space-between;
  min-width: 0;
  min-height: 100%;
  pointer-events: none;
  gap: clamp(10px, 2.5vh, 20px);
  padding-block: 10px;
}

/* Hug the reel: in RTL the start gutter is on the visual right → align toward center */
[dir='rtl'] .videoStage__gutter--start {
  align-items: flex-end;
}

[dir='rtl'] .videoStage__gutter--end {
  align-items: flex-start;
}

/* Neutral English chips — glass + violet bloom (desktop / tablet gutters only) */
.speech {
  --speech-rot: -2deg;
  --speech-drift: 8px;
  display: inline-block;
  max-width: 11em;
  font-family: 'Cairo', system-ui, sans-serif;
  font-size: clamp(10px, 2.5vw, 12px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: linear-gradient(
    155deg,
    rgba(124, 92, 255, 0.14) 0%,
    rgba(14, 11, 32, 0.78) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 10px 28px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(124, 92, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: speechDrift 7.5s ease-in-out infinite;
}

.speech--accent {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  border-color: rgba(169, 144, 255, 0.45);
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.28) 0%,
    rgba(40, 32, 72, 0.82) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 12px 32px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(124, 92, 255, 0.22);
}

.speech--tail {
  border-radius: 16px 16px 6px 16px;
}

.speech--whisper {
  font-weight: 600;
  opacity: 0.88;
  color: rgba(255, 255, 255, 0.44);
  border-color: rgba(124, 92, 255, 0.22);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 14px rgba(124, 92, 255, 0.06);
}

.speech--r1 {
  --speech-rot: -3deg;
}

.speech--r2 {
  --speech-rot: 2.5deg;
}

.speech--r3 {
  --speech-rot: -1.5deg;
}

.speech--d1 {
  animation-delay: 0s;
}

.speech--d2 {
  animation-delay: -1.4s;
}

.speech--d3 {
  animation-delay: -2.6s;
}

.speech--d4 {
  animation-delay: -3.5s;
}

@keyframes speechDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--speech-rot));
  }
  50% {
    transform: translate3d(0, calc(-1 * var(--speech-drift, 8px)), 0)
      rotate(calc(var(--speech-rot) * -1));
  }
}

/* Plain mark in the gutter — no frame, no caption */
.orbitLogo {
  --orbit-drift: 11px;
  display: block;
  width: auto;
  height: 44px;
  flex-shrink: 0;
  pointer-events: none;
  filter: drop-shadow(0 4px 22px rgba(124, 92, 255, 0.42));
  animation: orbitLogoFloat 6.2s ease-in-out infinite;
  will-change: transform;
}

@keyframes orbitLogoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, calc(-1 * var(--orbit-drift, 11px)), 0);
  }
}

.reelWrap {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.video__frame {
  position: relative;
  aspect-ratio: var(--video-aspect, 16 / 9);
  width: 100%;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* 16:9 VSL (vsl_2.mp4) — centered inside the page column (no 100vw breakout; breaks in RTL) */
.videoStage--landscape {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
}

.videoStage--landscape .videoStage__gutter {
  display: none;
}

.videoStage--landscape .videoStage__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
}

.videoStage--landscape .videoStage__main {
  grid-column: auto;
  width: 100%;
  max-width: 100%;
}

.videoStage--landscape .reelWrap {
  width: 100%;
}

.videoStage--landscape .video__frame {
  border-radius: var(--radius-md);
  box-shadow:
    var(--shadow-card),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.videoStage--landscape .video__el {
  object-fit: contain;
  background: #000;
}


.video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Disable native control surface even if the OS tries to layer one on. */
  pointer-events: none;
}

.video__error {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  background: rgba(14, 11, 31, 0.92);
  pointer-events: none;
}

.video__error code {
  font-size: 0.85em;
  color: var(--color-primary-soft, #b8b0ff);
}

.video__error[hidden] {
  display: none !important;
}

/* The overlay is the play/pause hit target. Covers the entire frame so the
   user can tap anywhere on the video to toggle. */
.video__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 11, 31, 0.35);
  transition: opacity 200ms ease, background 200ms ease;
}

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

/* While buffering, always show spinner — even if is-hidden was set earlier. */
.video__overlay.is-buffering {
  opacity: 1 !important;
  pointer-events: auto;
  background: rgba(14, 11, 31, 0.55);
  cursor: wait;
}

.video__overlay.is-buffering .video__playBtn {
  visibility: hidden;
}

.video__overlay.is-buffering::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  border: 3px solid rgba(124, 92, 255, 0.25);
  border-top-color: var(--color-primary);
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  animation: videoSpin 0.75s linear infinite;
}

@keyframes videoSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.video__playBtn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 200ms ease;
}

.video__overlay:hover .video__playBtn {
  transform: scale(1.06);
}

.video__playBtn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  /* Triangle visually points "forward" — flip it in RTL so it points
     toward the start edge, which matches reading direction. The actual
     play/pause logic doesn't care; this is purely visual. */
  margin-inline-start: 4px;
}

[dir='rtl'] .video__playBtn svg {
  transform: scaleX(-1);
  margin-inline-start: 0;
  margin-inline-end: 4px;
}

/* Indicative progress bar at the bottom of the frame. Not seekable. */
.video__progress {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  /* RTL container so the fill grows from the start (visually right) edge. */
  direction: rtl;
}

.video__progressFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary-strong) 0%, var(--color-primary) 100%);
  transition: width 120ms linear;
}

/* CTA ---------------------------------------------------------------------- */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.cta__button {
  width: 100%;
  max-width: 520px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: transform 180ms ease, background 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cta__buttonIcon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Locked: dim, no glow, lock icon visible, WhatsApp icon hidden. */
.cta__button--locked {
  background: var(--color-locked);
  color: var(--color-locked-text);
  cursor: not-allowed;
  border: 1px solid var(--color-border);
}

.cta__button--locked .cta__buttonIcon--whatsapp {
  display: none;
}

/* Unlocked: the WhatsApp brand green is intentionally chosen — it's a hard
   cue that tapping leads to WhatsApp. Subtle gradient + glow signal the
   "now active" state. */
.cta__button:not(.cta__button--locked) {
  background: linear-gradient(135deg, #1FAE5C 0%, #25D366 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: cta-pop 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta__button:not(.cta__button--locked):hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.45);
}

.cta__button:not(.cta__button--locked):active {
  transform: translateY(0);
}

.cta__button:not(.cta__button--locked) .cta__buttonIcon--lock {
  display: none;
}

@keyframes cta-pop {
  0%   { transform: scale(0.94); opacity: 0.6; }
  60%  { transform: scale(1.04); }
  100% { transform: scale(1); opacity: 1; }
}

.cta__helper {
  font-size: 13px;
  color: var(--color-text-faint);
  font-weight: 500;
  text-align: center;
}

/* Shared section headers --------------------------------------------------- */
.sectionHead {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.sectionHead__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-soft);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: rgba(124, 92, 255, 0.12);
}

.sectionHead__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.4px;
  color: var(--color-text);
}

.sectionHead__desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 34ch;
}

/* Reviews — balanced masonry (natural screenshot heights) -------------------- */
.reviews {
  width: 100%;
  padding: 8px 0 4px;
}

@media (min-width: 640px) {
  .reviews {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: clamp(16px, 4vw, 40px);
  }
}

.reviews__masonry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.reviews__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(124, 92, 255, 0.28);
  background: var(--color-surface);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px rgba(124, 92, 255, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: zoom-in;
}

.reviews__card:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 144, 255, 0.45);
  box-shadow:
    var(--shadow-card),
    0 0 36px rgba(124, 92, 255, 0.18);
}

.reviews__card img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews__masonry.is-loading {
  opacity: 0;
}

.reviews__masonry.is-ready {
  opacity: 1;
  transition: opacity 280ms ease;
}

/* FAQ ---------------------------------------------------------------------- */
.faq {
  width: 100%;
  padding: 4px 0 8px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: linear-gradient(
    160deg,
    rgba(33, 28, 58, 0.95) 0%,
    rgba(26, 23, 48, 0.88) 100%
  );
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq__item[open] {
  border-color: rgba(124, 92, 255, 0.42);
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.12);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-text);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__qText {
  flex: 1;
  text-align: start;
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 255, 0.35);
  background: rgba(124, 92, 255, 0.14);
  position: relative;
  transition: transform 260ms ease, background 260ms ease;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--color-primary-soft);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, opacity 260ms ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon {
  background: rgba(124, 92, 255, 0.28);
  transform: rotate(180deg);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
  padding: 16px 18px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__answer p + p {
  margin-top: 8px;
}

.faq__answer strong {
  color: var(--color-primary-soft);
  font-weight: 700;
}

/* Review lightbox ---------------------------------------------------------- */
.reviewLightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 6, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.reviewLightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reviewLightbox__img {
  max-width: min(92vw, 420px);
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.reviewLightbox__close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Footer ------------------------------------------------------------------- */
.footer {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-faint);
}

@media (max-width: 599px) {
  .mobileBrand {
    display: flex;
  }

  .videoStage__gutter {
    display: none;
  }

  .videoStage__stage {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
  }

  .videoStage__main {
    grid-column: 1;
    width: 100%;
  }
}

@media (min-width: 600px) {
  .mobileBrand {
    display: none;
  }

  .speech {
    --speech-drift: 13px;
    font-size: clamp(12px, 0.95vw, 14px);
    padding: 11px 17px;
    letter-spacing: 0.05em;
  }

  .orbitLogo {
    --orbit-drift: 15px;
    height: 56px;
    filter: drop-shadow(0 6px 28px rgba(124, 92, 255, 0.48));
    animation-duration: 6.8s;
  }

  .videoStage__stage {
    gap: 12px 26px;
  }
}

/* Responsive scale-up for tablets & desktops -------------------------------- */
@media (min-width: 640px) {
  .page {
    max-width: 640px;
    padding: 36px 32px 56px;
    gap: 36px;
  }

  .videoStage__stage {
    gap: 14px 28px;
  }

  .orbitLogo {
    height: 60px;
    --orbit-drift: 17px;
  }

  .hero__title {
    font-size: 34px;
    max-width: 24ch;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__bullets {
    font-size: 15px;
  }

  .video__playBtn {
    width: 88px;
    height: 88px;
  }

  .video__playBtn svg {
    width: 36px;
    height: 36px;
  }

  .cta__button {
    padding: 20px 32px;
    font-size: 17px;
  }

  .sectionHead__title {
    font-size: 26px;
  }

  .reviews__masonry {
    gap: 14px;
  }

  .reviews__col {
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  /* Wider column so RTL headline + subcopy can stay one line each. */
  .page {
    max-width: min(960px, 94vw);
    padding: 48px 40px 64px;
  }

  .orbitLogo {
    height: 72px;
    --orbit-drift: 19px;
  }

  .speech {
    --speech-drift: 14px;
  }

  .hero__title {
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.25;
    max-width: none;
    white-space: nowrap;
  }

  .hero__description {
    font-size: clamp(14px, 1.35vw, 17px);
    max-width: none;
    white-space: nowrap;
  }
}

/* Reduced-motion support — keep the layout but skip the celebrations. */
@media (prefers-reduced-motion: reduce) {
  .cta__button:not(.cta__button--locked) {
    animation: none;
  }

  .orbitLogo,
  .speech {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
