/* ─────────────────────────────────────────────────────
   YALLA FARHA — Landing Page  |  Modern redesign 2026
   ───────────────────────────────────────────────────── */

:root {
  --pink:          #c8189a;
  --pink-mid:      #e050b8;
  --purple:        #5a1282;
  --purple-mid:    #7b35a5;
  --dark:          #0c041e;
  --dark-2:        #170a35;
  --off-white:     #f9f4ff;
  --ink:           #1a0a2e;
  --muted:         #7a6490;
  --line:          rgba(90, 18, 130, 0.12);
  --brand-grad:    linear-gradient(135deg, #5a1282 0%, #c8189a 100%);
  --hero-bg:       linear-gradient(150deg, #f2e4ff 0%, #fdf0fa 45%, #fff8ff 100%);
  --glow-pink:     0 8px 40px rgba(200, 24, 154, 0.3);
  --glow-purple:   0 8px 40px rgba(90, 18, 130, 0.22);
  --card-shadow:   0 2px 12px rgba(90, 18, 130, 0.07), 0 8px 32px rgba(90, 18, 130, 0.05);
  --menu-control-height: 56px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }

body {
  font-family: "Plus Jakarta Sans", "Noto Sans Arabic", sans-serif;
  background: linear-gradient(175deg, #ede4ff 0%, #f8f0ff 28%, #fdfaff 55%, #ffffff 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body.rtl { font-family: "Noto Sans Arabic", "Plus Jakarta Sans", sans-serif; }

/* ── Shared utilities ───────────────────────────────── */
.gradient-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 640ms cubic-bezier(.22,1,.36,1),
              transform 640ms cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 112px;
  padding: 0 max(20px, 4.2vw);
  background: transparent;
  transition: background 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(200,24,154,0.28) 25%, rgba(90,18,130,0.45) 50%, rgba(200,24,154,0.28) 75%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 10px 36px rgba(90, 18, 130, 0.12);
}
.site-header.scrolled::after { opacity: 1; }
.brand-logo img { height: 96px; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: var(--menu-control-height);
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px) saturate(170%);
  -webkit-backdrop-filter: blur(10px) saturate(170%);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(46, 26, 73, 0.72);
  padding: 0 0.95rem;
  border-radius: 999px;
  transition: color 180ms, background 180ms, transform 180ms;
}
.nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #5a1282 0%, #c8189a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(90,18,130,0.28);
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    var(--brand-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 999px;
  height: var(--menu-control-height);
  min-width: var(--menu-control-height);
  padding: 0 0.9rem;
  color: var(--purple-mid);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  transition: transform 180ms, box-shadow 180ms, background 200ms, color 200ms;
}
.lang-icon {
  font-size: 1.04rem;
  line-height: 1;
}
.lang-caret {
  font-size: 0.62rem;
  line-height: 1;
  opacity: 0.85;
  transition: transform 180ms ease;
}
.lang-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(90, 18, 130, 0.18);
  background: var(--brand-grad);
  color: #fff;
}
.lang-dropdown.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.48rem);
  right: 0;
  min-width: 156px;
  display: grid;
  gap: 0.22rem;
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(170%);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
  box-shadow: 0 16px 36px rgba(90, 18, 130, 0.16);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.lang-dropdown.open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(46, 26, 73, 0.85);
  text-align: left;
  padding: 0.52rem 0.68rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.lang-option:hover {
  background: rgba(90, 18, 130, 0.08);
  color: var(--purple-mid);
}
.lang-option.active {
  background: rgba(90, 18, 130, 0.12);
  color: var(--purple-mid);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 0.88rem 1.8rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 200ms cubic-bezier(.22,1,.36,1),
              box-shadow 200ms,
              opacity 180ms;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--glow-pink);
}
.btn-primary:hover { box-shadow: 0 12px 50px rgba(200,24,154,0.45); }

.btn-ghost {
  background: rgba(90, 18, 130, 0.07);
  border: 1.5px solid rgba(90, 18, 130, 0.2);
  color: var(--purple-mid);
}
.btn-ghost:hover {
  background: rgba(90, 18, 130, 0.12);
  border-color: var(--purple-mid);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(7rem, 10vw, 9rem) max(24px, 6vw) 3rem;
  background: transparent;
}

/* Blurred orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  animation: drift 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(200,24,154,0.18); top: -180px; right: 0;                    animation-duration: 13s; }
.orb-2 { width: 380px; height: 380px; background: rgba(90,18,130,0.22);  bottom: -120px; left: -60px;             animation-duration: 11s; animation-delay: 2s; }
.orb-3 { width: 240px; height: 240px; background: rgba(200,24,154,0.13); top: 50%; left: 42%;                    animation-duration: 15s; animation-delay: 1s; }

/* Floating emoji sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkle-float 6s ease-in-out infinite;
  opacity: 0.75;
  filter: drop-shadow(0 2px 8px rgba(200,24,154,0.4));
}
.sparkle-1 { top: 10%; left: 4%;   font-size: 2rem;  animation-delay: 0s;   }
.sparkle-2 { top: 18%; right: 10%; font-size: 1.4rem; animation-delay: 1.2s; }
.sparkle-3 { bottom: 22%; left: 8%; font-size: 1.8rem; animation-delay: 2.1s; }
.sparkle-4 { top: 58%; right: 6%;  font-size: 1.2rem; animation-delay: 0.6s; }

.hero-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow badge — gradient border */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 0.36rem 0.9rem 0.36rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-mid);
  background: linear-gradient(white, white) padding-box,
              var(--brand-grad) border-box;
  border: 1.5px solid transparent;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: "🎉"; font-size: 0.85rem; }

.headline {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--ink);
}

.subhead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(90,18,130,0.25);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,24,154,0.18) 0%, transparent 68%);
  animation: pulse-ring 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-visual img {
  max-height: 560px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(200,24,154,0.28));
  animation: float 8s ease-in-out infinite;
}

/* ── Features section ───────────────────────────────── */
.features-section {
  background: transparent;
  padding: 6rem max(24px, 5vw);
  position: relative;
  overflow: hidden;
}
.features-section::before { display: none; }
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.08;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

.how-orbit {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Centered vertical spine */
.how-orbit::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: calc(50% - 1.5px);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent 0%, rgba(200,24,154,0.75) 20%, rgba(200,24,154,0.95) 50%, rgba(200,24,154,0.75) 80%, transparent 100%);
  box-shadow: 0 0 16px rgba(200,24,154,0.38);
}

.how-node {
  /* Card takes half the width minus room for the step circle on the spine */
  width: calc(50% - 70px);
  background:
    radial-gradient(ellipse 110% 90% at 95% 0%, rgba(200,24,154,0.11) 0%, transparent 55%),
    linear-gradient(165deg, #fff 0%, #fef9ff 60%, #fdf4ff 100%);
  border: 1px solid rgba(90,18,130,0.12);
  border-radius: 24px;
  padding: 1.75rem 2rem 1.6rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 12px 38px rgba(90,18,130,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 260ms cubic-bezier(.22,1,.36,1), box-shadow 260ms ease, border-color 260ms ease;
}

/* Alternate left / right */
.how-node:nth-child(odd)  { margin-right: auto; }
.how-node:nth-child(even) { margin-left: auto; }

/* Connector line from card edge to center spine */
.how-node::before {
  content: "";
  position: absolute;
  top: 49px;
  width: 70px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(90,18,130,0.12), rgba(200,24,154,0.45));
  pointer-events: none;
}
.how-node:nth-child(odd)::before  { right: -70px; }
.how-node:nth-child(even)::before {
  left: -70px;
  background: linear-gradient(90deg, rgba(200,24,154,0.45), rgba(90,18,130,0.12));
}

/* Ghost step-number watermark */
.how-node::after {
  content: attr(data-step);
  position: absolute;
  bottom: -0.5rem;
  right: 0.9rem;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(90,18,130,0.07);
  pointer-events: none;
  user-select: none;
}

.how-node h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0.45rem 0 0.5rem;
  line-height: 1.15;
}

.how-node p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 92%;
}

.how-node:hover {
  transform: translateY(-6px);
  border-color: rgba(200,24,154,0.32);
  box-shadow: 0 24px 56px rgba(90,18,130,0.16);
}

/* Step circle — sits on the center spine */
.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  box-shadow: 0 5px 16px rgba(200,24,154,0.38), 0 0 0 5px #fff;
  z-index: 2;
}
/* Odd card: circle on right edge toward spine */
.how-node:nth-child(odd) .step-circle  { right: -95px; }
/* Even card: circle on left edge toward spine */
.how-node:nth-child(even) .step-circle { left: -95px; }
.feature-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.66;
  font-size: 0.93rem;
}

/* ── Split section ──────────────────────────────────── */
.split-section {
  background: transparent;
  padding: 6rem max(24px, 5vw);
  position: relative;
  overflow: hidden;
}
.split-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}
.split-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 6rem;
  row-gap: 1.5rem;
  align-items: start;
}
.split-heading {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}
.split-visual {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}
.split-copy {
  grid-column: 2;
  grid-row: 2;
}
.split-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,24,154,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.split-visual img {
  max-height: 440px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 44px rgba(90,18,130,0.2));
}
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.split-heading > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.feature-bullets {
  margin-bottom: 2rem;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #5a1282 0%, #c8189a 100%) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(90,18,130,0.1);
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(90,18,130,0.07);
  transition: background 0.18s;
}
.feature-bullets li:last-child { border-bottom: none; }
.feature-bullets li:hover { background: rgba(90,18,130,0.03); }
.feature-bullets li::before {
  content: "";
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 9px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #5a1282 0%, #c8189a 100%);
  background-size: 14px 14px, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: 0 3px 10px rgba(200,24,154,0.3);
  flex-shrink: 0;
}
.split-trust {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Stats band ─────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #5a1282 0%, #c8189a 100%);
  padding: 5rem max(24px, 5vw);
  position: relative;
  overflow: hidden;
}
/* Subtle dot grid texture */
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stats-headline {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 3rem;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 2rem;
}
.stat-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.stat-number {
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* ── App section ─────────────────────────────────────── */
.app-section {
  background:
    radial-gradient(ellipse 60% 75% at 1% 50%, rgba(90,18,130,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 99% 50%, rgba(200,24,154,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(200,24,154,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #f4ecff 0%, #fdf5ff 50%, #fff4fd 100%);
  padding: 8rem max(24px, 5vw) 5rem;
  position: relative;
  overflow: hidden;
}
.app-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fef8ff 60%, #fdf4ff 100%);
  border: 1.5px solid rgba(90,18,130,0.12);
  border-radius: 32px;
  padding: 3.5rem 4rem;
  position: relative;
  overflow: visible;
  box-shadow: var(--card-shadow);
}
.app-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Top accent bar */
.app-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-grad);
  border-radius: 4px 4px 0 0;
}
.app-inner::after {
  content: "";
  position: absolute;
  right: -55px; bottom: -55px;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,24,154,0.11) 0%, transparent 68%);
  pointer-events: none;
}
.phone-mockup-img {
  width: 260px;
  height: auto;
  display: block;
  margin-top: -6rem;
  filter: drop-shadow(0 32px 64px rgba(90,18,130,0.3));
}
.app-copy .eyebrow { margin-bottom: 0.75rem; }
.app-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.app-copy p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.lead-stores {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.lead-store-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
  min-width: 175px;
}
.lead-store-badge:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.badge-logo { width: 28px; height: 28px; flex-shrink: 0; }
.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

/* ── Lead section ────────────────────────────────────── */
.dark-zone {
  background:
    radial-gradient(ellipse 65% 45% at 5% 20%, rgba(90,18,130,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 25%, rgba(200,24,154,0.38) 0%, transparent 52%),
    radial-gradient(ellipse 90% 25% at 50% 52%, rgba(90,18,130,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(90,18,130,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 90% 90%, rgba(200,24,154,0.28) 0%, transparent 50%),
    #0c041e;
  position: relative;
}
.lead-section {
  background: transparent;
  padding: 7rem max(24px, 5vw) 4rem;
  position: relative;
}
.lead-section::before,
.lead-section::after { display: none; }
.lead-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
  text-align: center;
}
.lead-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.lead-copy > p {
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.lead-perks {
  margin-top: 2rem;
}
.lead-perks li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lead-perks li:last-child { border-bottom: none; }
.lead-perks li::before {
  content: "✦";
  color: var(--pink-mid);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Lead form — glassmorphism card */
.lead-form-wrapper {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 2.2rem 2rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.lead-form-wrapper input,
.lead-form-wrapper textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.96rem;
  width: 100%;
  color: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 200ms, background 200ms;
}
.lead-form-wrapper input::placeholder,
.lead-form-wrapper textarea::placeholder { color: rgba(255,255,255,0.36); }
.lead-form-wrapper input:focus,
.lead-form-wrapper textarea:focus {
  border-color: rgba(200,24,154,0.55);
  background: rgba(255,255,255,0.11);
}
.lead-form-wrapper .btn-primary { width: 100%; }
.lead-feedback {
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--pink-mid);
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: transparent;
  padding: 3rem max(24px, 5vw) 2.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before { display: none; }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-logo {
  height: 32px;
  display: block;
  margin-bottom: 1rem;
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 220px;
  margin: 0;
}
.footer-col-heading {
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 1.1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
}
.footer-social a:hover {
  background: rgba(200,24,154,0.2);
  border-color: rgba(200,24,154,0.35);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}
.footer-made { display: flex; align-items: center; gap: 0.3rem; }

/* ── Keyframes ───────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -35px) scale(1.04); }
  66%       { transform: translate(-18px, 22px) scale(0.96); }
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1);    opacity: 0.9; }
  50%       { transform: scale(1.1); opacity: 0.4; }
}
@keyframes sparkle-float {
  0%, 100% { transform: translateY(0) rotate(0deg);    opacity: 0.7; }
  50%       { transform: translateY(-16px) rotate(12deg); opacity: 1;   }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  :root {
    --menu-control-height: 48px;
  }

  .site-header {
    height: 88px;
    padding: 0 14px;
  }
  .brand-logo img { height: 72px; }
  .header-nav {
    gap: 0.2rem;
    padding: 0.22rem;
    margin-inline: auto 0.45rem;
  }
  .nav-link {
    font-size: 0.72rem;
    padding: 0.35rem 0.56rem;
  }
  .lang-toggle {
    min-width: var(--menu-control-height);
    padding: 0 0.74rem;
  }
  .lang-icon { font-size: 0.9rem; }
  .lang-menu {
    min-width: 138px;
    top: calc(100% + 0.35rem);
  }
  .lang-option {
    font-size: 0.8rem;
    padding: 0.48rem 0.6rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6.4rem max(24px, 4vw) 2.5rem;
    text-align: center;
  }
  .hero-content { order: 2; }
  .subhead  { margin: 0 auto 2rem; }
  .hero-actions, .trust-bar { justify-content: center; }
  .hero-visual { order: 1; margin-bottom: -1rem; }
  .hero-visual img { max-height: 300px; }

  /* Tablet → 2-column grid */
  .how-orbit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 0;
  }
  .how-orbit::before { display: none; }
  .how-node {
    width: 100%;
    margin: 0;
    padding: 1.5rem 1.4rem 1.3rem;
    overflow: hidden;
  }
  .how-node:nth-child(odd),
  .how-node:nth-child(even) { margin: 0; }
  .how-node::before { display: none; }
  .how-node:hover { transform: translateY(-5px); }
  .step-circle {
    position: static;
    margin-bottom: 1.1rem;
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .how-node:nth-child(odd) .step-circle,
  .how-node:nth-child(even) .step-circle { left: auto; right: auto; }

  .split-inner {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 2rem;
    text-align: center;
  }
  .split-heading { grid-column: auto; grid-row: auto; order: 1; text-align: center; }
  .split-visual  { grid-column: auto; grid-row: auto; order: 2; }
  .split-copy    { grid-column: auto; grid-row: auto; order: 3; }
  .split-copy .btn-primary { width: 100%; text-align: center; justify-content: center; }
  .feature-bullets li { justify-content: center; }
  .feature-bullets li::before { flex-shrink: 0; }

  .stats-row { gap: 0; }
  .stat-item { padding: 1rem; }

  .app-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 2rem 2.5rem;
    gap: 1.5rem;
  }
  .app-mockup { justify-content: center; }
  .phone-mockup-img {
    width: 200px;
    margin-top: -5rem;
  }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lead-copy { text-align: center; }
  .lead-perks li { justify-content: center; }
  .sparkle { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* Mobile → single column list with left rail */
  .how-orbit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 36px;
  }
  .how-orbit::before {
    display: block;
    left: 16px;
    top: 8px;
    bottom: 8px;
  }
  .how-node {
    width: 100%;
    margin: 0;
    padding: 1.3rem 1.1rem 1.1rem;
    overflow: hidden;
  }
  .how-node:nth-child(odd),
  .how-node:nth-child(even) { margin: 0; }
  .how-node::before {
    display: block;
    left: -36px;
    top: 38px;
    width: 20px;
    height: 2px;
    background: rgba(200,24,154,0.4);
  }
  .how-node:nth-child(even)::before { background: rgba(200,24,154,0.4); }
  .how-node:hover { transform: none; }
  .step-circle {
    position: absolute;
    left: -54px;
    top: 14px;
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
    box-shadow: 0 3px 10px rgba(200,24,154,0.35), 0 0 0 4px #fff;
  }
  .how-node:nth-child(odd) .step-circle,
  .how-node:nth-child(even) .step-circle { right: auto; left: -54px; }
  .how-node h3 { font-size: 1.1rem; }
  .how-node p { font-size: 0.95rem; max-width: 100%; }
  .how-node::after { display: none; }
}

@media (max-width: 560px) {
  .header-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .hero-visual img, .hero-glow-ring,
  .sparkle, .reveal, .btn, .feature-card {
    animation: none !important;
    transition: opacity 300ms, transform 300ms !important;
  }
}
