/* ============================================
   فرحة — Marketing Site
   Apple Glass / Liquid Glass aesthetic
   Brand: purple #8b5cf6, gold #d4a017
   ============================================ */

:root {
  --purple: #8b5cf6;
  --purple-2: #a78bfa;
  --purple-light: #c4b5fd;
  --purple-deep: #6d28d9;
  --gold: #d4a017;
  --gold-light: #f5c842;
  --green: #10b981;
  --red: #ef4444;

  --bg: #0a0612;
  --bg-2: #120a26;
  --bg-3: #1a0f33;

  --text: #f8f5ff;
  --text-muted: #b8b3c9;
  --text-faint: #7a7390;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-soft: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6),
                  0 8px 30px -8px rgba(139, 92, 246, 0.15),
                  inset 0 1px 0 rgba(255, 255, 255, 0.08);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Cairo', system-ui, -apple-system, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Background ambient stage
   ============================================ */
.bg-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at top, #1a0f33 0%, #0a0612 50%, #050309 100%);
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
}

.bg-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #8b5cf6, transparent 60%);
  top: -200px; right: -150px;
  animation: float-1 22s ease-in-out infinite;
}
.bg-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #d4a017, transparent 60%);
  bottom: -100px; left: -100px;
  opacity: 0.35;
  animation: float-2 28s ease-in-out infinite;
}
.bg-orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6d28d9, transparent 60%);
  top: 40%; left: 30%;
  opacity: 0.4;
  animation: float-3 25s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 80px) scale(1.1); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(0.95); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -50px) scale(1.05); }
}

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

/* ============================================
   Glass utility
   ============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  position: relative;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02) 30%,
    transparent 60%,
    rgba(139, 92, 246, 0.15) 100%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-soft {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* ============================================
   Typography helpers
   ============================================ */
.grad-text {
  background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 50%, #6d28d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.grad-gold {
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.grad-bg-gold {
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%) !important;
  color: #1a0f33 !important;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: white;
  box-shadow:
    0 8px 24px -6px rgba(139, 92, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -6px rgba(139, 92, 246, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-gold {
  background: linear-gradient(135deg, #f5c842, #d4a017);
  color: #1a0f33;
  box-shadow:
    0 8px 24px -6px rgba(212, 160, 23, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -6px rgba(212, 160, 23, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--glass-bg-soft);
  border-color: var(--glass-border-strong);
  transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 16px;
  inset-inline: 0;
  z-index: 100;
  padding: 0 20px;
  pointer-events: none;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px 12px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  pointer-events: auto;
  transition: all 0.3s var(--ease);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 2px;
}

.nav-title { font-size: 18px; }

.nav-links {
  display: flex;
  gap: 6px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.25s var(--ease);
}

.nav-links a:hover {
  background: var(--glass-bg);
  color: var(--text);
}

.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-burger span {
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   Pill / chip
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  width: fit-content;
}
.pill-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple);
  animation: pulse-dot 2s ease-in-out infinite;
}
.pill-dot-gold {
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.pill-gold { color: var(--gold-light); }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin: 24px 0 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 22px color-mix(in srgb, var(--ic) 25%, transparent);
}
.stat-ic svg { width: 22px; height: 22px; fill: var(--ic); }

.stat-title {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: var(--glass-border);
}

/* ============================================
   iPhone Mockup — pure CSS
   ============================================ */
.iphone {
  --ip-w: 300px;
  --ip-h: 612px;
  width: var(--ip-w);
  height: var(--ip-h);
  position: relative;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 80px rgba(139, 92, 246, 0.25));
}

.iphone-frame {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #1f1729, #0a0612 50%, #1f1729);
  padding: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 4px #1a0f26,
    inset 0 0 0 5px rgba(255, 255, 255, 0.04);
  z-index: 2;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.05);
}

.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.iphone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
}

.iphone-side {
  position: absolute;
  width: 3px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.iphone-side-left {
  left: -3px;
  top: 100px;
}

.iphone-side-right {
  right: -3px;
  top: 140px;
}

.key {
  background: linear-gradient(90deg, #2a1f3a, #1a0f26);
  border-radius: 2px 0 0 2px;
  display: block;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.05);
}
.iphone-side-right .key {
  border-radius: 0 2px 2px 0;
  background: linear-gradient(270deg, #2a1f3a, #1a0f26);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
}

.key-silent { width: 3px; height: 22px; }
.key-vol { width: 3px; height: 50px; }
.key-power { width: 3px; height: 70px; }

.iphone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.3), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* hero phone */
.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.hero-iphone {
  --ip-w: 320px;
  --ip-h: 654px;
  transform: rotateY(-8deg) rotateX(4deg);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}

.hero-phone-aura {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: aura-pulse 4s ease-in-out infinite;
}
@keyframes aura-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* floating cards */
.floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 20px !important;
  z-index: 5;
  animation: float-card 5s ease-in-out infinite;
}

.card-rating {
  top: 60px;
  right: -20px;
  min-width: 180px;
  animation-delay: 0s;
}
.card-deposit {
  bottom: 80px;
  left: -30px;
  min-width: 200px;
  animation-delay: 1.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.fc-text { font-size: 12px; color: var(--text-muted); }

.card-confirm {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.fc-confirm-ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}
.fc-confirm-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.fc-mini { font-size: 11px; color: var(--gold-light); margin-bottom: 4px; font-weight: 600; }
.fc-big {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #f5c842, #d4a017);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fc-big span { font-size: 14px; }
.fc-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin: 8px 0 6px;
  overflow: hidden;
}
.fc-bar-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #f5c842, #d4a017);
  border-radius: inherit;
  animation: bar-fill 2s ease-out;
}
@keyframes bar-fill {
  from { width: 0; }
  to { width: 25%; }
}
.fc-foot { font-size: 11px; color: var(--text-faint); }

/* ============================================
   STRIP (trust)
   ============================================ */
.strip {
  padding: 30px 0 60px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
}

.strip-icon {
  width: 28px;
  height: 28px;
  fill: var(--purple-light);
  flex-shrink: 0;
}

.strip-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.strip-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   Section base
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 8px 0;
}

.section-sub {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-strong);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--ic) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 30px color-mix(in srgb, var(--ic) 25%, transparent);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--ic);
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   HOW IT WORKS — steps
   ============================================ */
.section-how { padding-top: 60px; }

.step {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.step:last-child { margin-bottom: 0; }

.step-rev {
  grid-template-columns: 380px 1fr;
}

.step-rev .step-copy { order: 2; }
.step-rev .step-phone { order: 1; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: white;
  box-shadow:
    0 12px 30px -8px rgba(139, 92, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.step-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.step-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -75%) rotate(-45deg);
}

.step-phone {
  display: flex;
  justify-content: center;
}

/* deposit mini card */
.deposit-mini {
  padding: 20px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.dm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
}
.dm-row + .dm-row {
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.dm-row span { color: var(--text-muted); }
.dm-row strong { font-weight: 700; }
.dm-highlight strong { font-size: 22px; }
.dm-muted strong { color: var(--text-muted); }

/* badge row */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  color: var(--text);
}

/* ============================================
   DEPOSIT highlight
   ============================================ */
.deposit-section { padding: 60px 0; }

.deposit-card {
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
}

.deposit-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.18), transparent 50%);
  pointer-events: none;
}

.deposit-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.deposit-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0;
}

.deposit-text {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.deposit-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 880px;
  margin: 24px 0 32px;
}

.dep-feature {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: right;
  border-radius: 22px !important;
}

.dep-feature-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ic) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px color-mix(in srgb, var(--ic) 22%, transparent);
}
.dep-feature-ic svg { width: 22px; height: 22px; fill: var(--ic); }

.dep-feature strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dep-feature span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Values section ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value {
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  text-align: right;
}
.value:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-strong);
}

.value-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.value h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   VENDORS section
   ============================================ */
.vendors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vendors-phones {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
}

.vendors-phones .iphone {
  position: absolute;
  --ip-w: 280px;
  --ip-h: 572px;
}

.phone-back {
  transform: translateX(-90px) translateY(20px) rotate(-8deg);
  z-index: 1;
  opacity: 0.85;
}

.phone-front {
  transform: translateX(60px) translateY(-10px) rotate(5deg);
  z-index: 2;
}

.vendors-copy { padding: 20px 0; }

.vendor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.vf {
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.vf-ic {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vf-ic svg { width: 20px; height: 20px; fill: var(--ic); }

.vf strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.vf span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.testi {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-stars {
  color: #f5c842;
  letter-spacing: 4px;
  font-size: 14px;
}

.testi-text {
  font-size: 16px;
  line-height: 1.8;
  flex: 1;
}

.testi-big .testi-text { font-size: 18px; }

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
}

.testi-foot strong {
  display: block;
  font-size: 14px;
}
.testi-foot span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 820px; }

.faq {
  padding: 0;
  overflow: hidden;
}

.faq details {
  border-bottom: 1px solid var(--glass-border);
}
.faq details:last-child { border-bottom: none; }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(255, 255, 255, 0.02); }

.faq-plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--purple-light);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; transition: transform 0.3s; }

.faq details[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq details p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) !important;
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.25), transparent 60%);
  bottom: -200px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 16px !important;
  transition: all 0.3s var(--ease);
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-strong);
}

.store-btn span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.store-btn strong {
  font-size: 17px;
  font-weight: 700;
}

.store-btn svg { fill: var(--text); }

.store-soon { opacity: 0.6; }

.cta-phone {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-phone .iphone {
  --ip-w: 240px;
  --ip-h: 490px;
  transform: rotate(-4deg);
}

/* ============================================
   Legal pages
   ============================================ */
.legal-main {
  padding-top: 120px;
}

.legal-hero {
  padding: 40px 0 28px;
}

.legal-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.legal-back {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}

.legal-back:hover {
  color: var(--purple-light);
}

.legal-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.12;
}

.legal-sub {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.9;
}

.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-muted);
}

.legal-meta strong {
  color: var(--gold-light);
  direction: ltr;
}

.legal-content-section {
  padding: 28px 0 42px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.legal-toc {
  padding: 22px;
  position: sticky;
  top: 112px;
  border-radius: var(--radius-md) !important;
}

.legal-toc h2 {
  font-size: 16px;
  margin-bottom: 14px;
}

.legal-toc ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: decimal;
  padding-inline-start: 22px;
  color: var(--text-faint);
}

.legal-toc a {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  transition: color 0.2s var(--ease);
}

.legal-toc a:hover {
  color: var(--purple-light);
}

.legal-doc {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg) !important;
}

.legal-section {
  scroll-margin-top: 120px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-section p,
.legal-section li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section ol + p,
.legal-section p + ul,
.legal-section p + ol {
  margin-top: 12px;
}

.legal-section ul,
.legal-section ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline-start: 24px;
  margin-top: 8px;
}

.legal-section ul {
  list-style: disc;
}

.legal-numbered {
  list-style: decimal;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--glass-border);
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

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

.footer ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--purple-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 13px;
  color: var(--text-faint);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-sub { margin-inline: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .step, .step-rev { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .step-rev .step-copy, .step-rev .step-phone { order: initial; }
  .step-copy { display: flex; flex-direction: column; align-items: center; }
  .step-num { margin-inline: auto; }
  .step-list { align-self: flex-start; margin-inline: auto; }
  .vendors-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .vendors-copy { display: flex; flex-direction: column; align-items: center; }
  .vendor-features { width: 100%; max-width: 600px; }
  .vendors-phones { height: 620px; }
  .testimonials { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .deposit-features { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta-content { display: flex; flex-direction: column; align-items: center; }
  .cta-buttons { justify-content: center; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-burger.open ~ .nav-cta { display: inline-flex; }
  .floating-card { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 70px 0; }
  .legal-main { padding-top: 110px; }
  .legal-title { font-size: 36px; }
  .legal-sub { font-size: 16px; }
  .legal-doc { padding: 22px; }
  .legal-section h2 { font-size: 19px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .deposit-features { grid-template-columns: 1fr; }
  .vendor-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .iphone { --ip-w: 260px; --ip-h: 530px; }
  .hero-iphone { --ip-w: 280px; --ip-h: 572px; }
  .vendors-phones .iphone { --ip-w: 240px; --ip-h: 490px; }
  .phone-back { transform: translateX(-50px) translateY(15px) rotate(-6deg); }
  .phone-front { transform: translateX(35px) translateY(-5px) rotate(4deg); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
