/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1e1b4b;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Tokens ────────────────────────────────────────────────────────── */
:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #2d1b69;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --orange: #f97316;
  --surface: #f5f3ff;
  --border: #e9e4ff;
  --text-muted: #64748b;
  --text-body: #334155;
  --radius: 24px;
}

/* ─── Gradient text ─────────────────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 55%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-size: 15px; font-weight: 600;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a21caf);
  color: #fff;
  box-shadow: 0 8px 32px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,.5); }
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-1px); }
.btn-nav {
  background: linear-gradient(135deg, #7c3aed, #a21caf);
  color: #fff; font-size: 14px; padding: 10px 22px;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,.45); }
.btn-white {
  background: #fff; color: #1e0a3c; font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,.75); }

/* ─── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(124,58,237,.08);
}
.nav.scrolled .nav-brand span { color: #1e1b4b; }
.nav.scrolled .nav-links a { color: #64748b; }
.nav.scrolled .nav-links a:hover { color: var(--purple); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 16px 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.nav-logo { width: 72px; height: 72px; object-fit: contain; }
.nav-links {
  display: flex; gap: 32px; flex: 1;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center;
  padding: 110px 24px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #1a0533 0%, #2d1b69 35%, #4c1d95 60%, #6d28d9 80%, #7c3aed 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .6;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(236,72,153,.4) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.3) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,.2) 0%, transparent 70%);
  top: 40%; left: 40%;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  max-width: 1200px; width: 100%;
  display: flex; align-items: center; gap: 64px;
  position: relative; z-index: 1;
}
.hero-copy { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ade80; }
  50% { opacity: .5; box-shadow: 0 0 3px #4ade80; }
}
.hero-title {
  font-size: clamp(46px, 6.5vw, 84px);
  font-weight: 900; line-height: 1.06; letter-spacing: -2.5px;
  color: #fff; margin-bottom: 24px;
}
.hero-title .grad-text {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 30%, #f472b6 65%, #c084fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.75);
  max-width: 500px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
}
.stat strong {
  display: block; font-size: 22px; font-weight: 800; color: #fff;
}
.stat span { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero phones */
.hero-phones {
  position: relative; flex-shrink: 0;
  width: 340px; height: 560px;
}
.phone { position: absolute; border-radius: 44px; overflow: hidden; }
.phone-frame {
  width: 100%; height: 100%;
  background: #fff;
  border: 8px solid rgba(255,255,255,.25);
  border-radius: 44px; overflow: hidden;
  box-shadow: 0 48px 120px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.15), inset 0 1px 0 rgba(255,255,255,.3);
}
.phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-front {
  width: 240px; height: 490px;
  top: 40px; left: 60px; z-index: 2;
}
.phone-back {
  width: 210px; height: 440px;
  top: 70px; right: 0; z-index: 1;
  opacity: .6;
  transform: rotate(6deg);
}
.phone-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle at center, rgba(236,72,153,.4) 0%, transparent 70%);
  z-index: -1; pointer-events: none;
}

/* Floating cards */
.float-card {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
  animation: float 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.float-card span { font-size: 11px; color: rgba(255,255,255,.65); }
.fc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-icon svg { width: 18px; height: 18px; }
.fc-green { background: rgba(74,222,128,.25); color: #4ade80; }
.fc-red { background: rgba(248,113,113,.25); color: #f87171; }
.fc-purple { background: rgba(196,181,253,.25); color: #c4b5fd; }
.card-1 { bottom: 60px; left: -60px; animation-delay: 0s; }
.card-2 { top: 20px; right: -40px; animation-delay: 2s; }
.card-3 { bottom: 130px; right: -50px; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 13px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,.5);
  border-radius: 2px; animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ─── Trust bar ─────────────────────────────────────────────────────── */
.trust {
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  background: #faf9ff;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.trust-inner p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.trust-badge {
  font-size: 12px; font-weight: 600; color: var(--purple);
  background: #f0ebff; border: 1px solid #ddd6fe;
  padding: 6px 14px; border-radius: 100px;
}

/* ─── Sections ──────────────────────────────────────────────────────── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head {
  text-align: center; margin-bottom: 80px;
}
.section-head h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
  color: #1e1b4b; margin-bottom: 16px;
}
.section-head p { font-size: 18px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ─── Reveal animation ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Feature rows ──────────────────────────────────────────────────── */
.features { background: #fff; }
.feat-row {
  display: flex; align-items: center; gap: 80px;
  margin-bottom: 120px;
}
.feat-row:last-child { margin-bottom: 0; }
.feat-row-rev { flex-direction: row-reverse; }
.feat-text { flex: 1; }
.feat-num {
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  color: var(--purple); margin-bottom: 16px;
  background: var(--surface); border: 1px solid var(--border);
  display: inline-block; padding: 4px 12px; border-radius: 100px;
}
.feat-text h3 {
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1px;
  color: #1e1b4b; margin-bottom: 16px; line-height: 1.15;
}
.feat-text p { font-size: 17px; line-height: 1.75; color: var(--text-muted); margin-bottom: 28px; }
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-body); font-weight: 500;
}
.feat-list li svg { width: 18px; height: 18px; color: #7c3aed; flex-shrink: 0; }

.feat-phone { position: relative; flex-shrink: 0; }
.phone-mockup {
  width: 260px; background: #fff;
  border: 7px solid #e9e4ff;
  border-radius: 40px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(124,58,237,.18), 0 0 0 1px rgba(124,58,237,.08);
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}
.phone-mockup img { width: 100%; display: block; }
.pm-notch {
  width: 80px; height: 22px; background: #fff;
  border-radius: 0 0 14px 14px; margin: 0 auto;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.pm-small { width: 220px; }

.feat-glow {
  position: absolute; inset: -40px; border-radius: 50%;
  filter: blur(60px); opacity: .2; pointer-events: none; z-index: -1;
}
.feat-glow-blue { background: #3b82f6; }
.feat-glow-purple { background: #7c3aed; }
.feat-glow-cyan { background: #06b6d4; }
.feat-glow-orange { background: #f97316; }

/* ─── Mini features grid ────────────────────────────────────────────── */
.mini-feats { background: #faf9ff; }
.mf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mf-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.mf-card:hover {
  border-color: #c4b5fd;
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(124,58,237,.12);
}
.mf-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mf-icon svg { width: 24px; height: 24px; }
.mf-card h4 { font-size: 17px; font-weight: 700; color: #1e1b4b; margin-bottom: 10px; }
.mf-card p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ─── Gallery ───────────────────────────────────────────────────────── */
.gallery { background: #fff; }
.gallery-scroll {
  overflow: hidden; margin: 0 -24px; padding: 0 24px;
}
.gallery-track {
  display: flex; gap: 20px;
  overflow-x: auto; padding: 20px 0 40px;
  cursor: grab; user-select: none;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.gallery-item span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.gi-phone {
  width: 160px; height: 320px;
  background: #fff; border: 4px solid #e9e4ff;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(124,58,237,.12);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.gi-phone:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 32px 72px rgba(124,58,237,.25);
  border-color: #a78bfa;
}
.gi-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ─── Security ──────────────────────────────────────────────────────── */
.security { background: #faf9ff; }
.security-card {
  background: linear-gradient(135deg, #2d1b69 0%, #4c1d95 50%, #6d28d9 100%);
  border-radius: 32px; padding: 72px;
  display: flex; align-items: center; gap: 80px;
  overflow: hidden; position: relative;
  box-shadow: 0 40px 100px rgba(109,40,217,.3);
}
.sec-left { flex: 1; }
.sec-left h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.sec-left p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.sec-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.sec-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600;
  padding: 10px 18px; border-radius: 100px;
}
.sec-badge svg { width: 16px; height: 16px; }
.sec-right { flex-shrink: 0; display: flex; justify-content: center; }
.sec-visual {
  position: relative; width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.sec-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  animation: ring-spin 20s linear infinite;
}
.sec-ring-1 { width: 200px; height: 200px; }
.sec-ring-2 { width: 150px; height: 150px; animation-duration: 15s; animation-direction: reverse; }
.sec-ring-3 { width: 100px; height: 100px; border-color: rgba(251,191,36,.3); animation-duration: 10s; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.sec-center {
  width: 70px; height: 70px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.sec-center svg { width: 36px; height: 36px; }

/* ─── How it works ──────────────────────────────────────────────────── */
.how { background: #fff; text-align: center; }
.how-steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.how-step {
  flex: 1;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: left; max-width: 280px;
  box-shadow: 0 8px 32px rgba(124,58,237,.06);
}
.how-arrow {
  font-size: 28px; color: #c4b5fd;
  padding: 0 8px; padding-top: 48px;
  flex-shrink: 0;
}
.hs-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #a21caf);
  color: #fff; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}
.hs-content h4 { font-size: 18px; font-weight: 700; color: #1e1b4b; margin-bottom: 10px; }
.hs-content p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ─── CTA ───────────────────────────────────────────────────────────── */
.cta-section { padding-bottom: 120px; background: #faf9ff; }
.cta-card {
  background: linear-gradient(135deg, #1a0533 0%, #2d1b69 40%, #4c1d95 70%, #6d28d9 100%);
  border-radius: 32px; padding: 72px;
  display: flex; align-items: center; gap: 80px;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(109,40,217,.3);
}
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(236,72,153,.35);
  top: -100px; right: 200px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(249,115,22,.25);
  bottom: -80px; left: -80px;
}
.cta-content { flex: 1; position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-phone { flex-shrink: 0; position: relative; z-index: 1; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
  border-top: 1.5px solid var(--border);
  padding: 48px 24px 24px;
  background: #fff;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo { width: 44px; height: 44px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 16px; font-weight: 800; color: #1e1b4b; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1.5px solid var(--border); padding-top: 24px;
  font-size: 13px; color: var(--text-muted);
}

/* ─── Particles canvas ──────────────────────────────────────────────── */
.particles-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ─── Cursor blink ──────────────────────────────────────────────────── */
.cursor {
  display: inline-block;
  animation: blink .9s step-end infinite;
  font-weight: 300;
}
@keyframes blink { 50% { opacity: 0; } }

/* ─── Glow on hero phones ───────────────────────────────────────────── */
.phone-front .phone-frame {
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 48px 120px rgba(0,0,0,.5), 0 0 40px rgba(236,72,153,.2), inset 0 1px 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 48px 120px rgba(0,0,0,.5), 0 0 80px rgba(236,72,153,.5), inset 0 1px 0 rgba(255,255,255,.3); }
}

/* ─── Phone mockup tilt ─────────────────────────────────────────────── */
.phone-mockup {
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
}

/* ─── Hero entrance animations ──────────────────────────────────────── */
.hero-badge { animation: badge-appear .8s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes badge-appear { from { opacity: 0; transform: translateY(-12px) scale(.9); } }
.hero-title { animation: title-appear 1s cubic-bezier(.34,1.2,.64,1) .1s both; }
@keyframes title-appear { from { opacity: 0; transform: translateY(24px); } }
.hero-sub { animation: title-appear 1s cubic-bezier(.34,1.2,.64,1) .25s both; }
.hero-cta { animation: title-appear 1s cubic-bezier(.34,1.2,.64,1) .4s both; }
.hero-stats { animation: title-appear 1s cubic-bezier(.34,1.2,.64,1) .55s both; }
.hero-phones { animation: phones-appear 1.2s cubic-bezier(.34,1.2,.64,1) .3s both; }
@keyframes phones-appear { from { opacity: 0; transform: translateY(40px) scale(.95); } }

/* ─── Stagger cards ─────────────────────────────────────────────────── */
.mf-card:nth-child(1) { transition-delay: 0ms; }
.mf-card:nth-child(2) { transition-delay: 80ms; }
.mf-card:nth-child(3) { transition-delay: 160ms; }
.mf-card:nth-child(4) { transition-delay: 240ms; }
.mf-card:nth-child(5) { transition-delay: 320ms; }
.mf-card:nth-child(6) { transition-delay: 400ms; }

/* ─── Section headings animation ───────────────────────────────────── */
.section-head.visible h2 { animation: fade-up .7s cubic-bezier(.34,1.2,.64,1) both; }
.section-head.visible p { animation: fade-up .7s cubic-bezier(.34,1.2,.64,1) .15s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ─── Gallery stagger ───────────────────────────────────────────────── */
.gallery-track .gallery-item {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.gallery-scroll.visible .gallery-item { opacity: 1; transform: none; }
.gallery-scroll.visible .gallery-item:nth-child(1) { transition-delay: 0ms; }
.gallery-scroll.visible .gallery-item:nth-child(2) { transition-delay: 60ms; }
.gallery-scroll.visible .gallery-item:nth-child(3) { transition-delay: 120ms; }
.gallery-scroll.visible .gallery-item:nth-child(4) { transition-delay: 180ms; }
.gallery-scroll.visible .gallery-item:nth-child(5) { transition-delay: 240ms; }
.gallery-scroll.visible .gallery-item:nth-child(6) { transition-delay: 300ms; }
.gallery-scroll.visible .gallery-item:nth-child(7) { transition-delay: 360ms; }
.gallery-scroll.visible .gallery-item:nth-child(8) { transition-delay: 420ms; }
.gallery-scroll.visible .gallery-item:nth-child(9) { transition-delay: 480ms; }
.gallery-scroll.visible .gallery-item:nth-child(10) { transition-delay: 540ms; }
.gallery-scroll.visible .gallery-item:nth-child(11) { transition-delay: 600ms; }

/* ─── Button shine ──────────────────────────────────────────────────── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover::after { opacity: 1; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .hero-phones { margin-top: 48px; }
  .card-1 { left: -20px; }
  .card-2 { right: -20px; }
  .card-3 { right: -20px; }
  .feat-row, .feat-row-rev { flex-direction: column; gap: 48px; text-align: center; }
  .feat-list { align-items: flex-start; }
  .mf-grid { grid-template-columns: repeat(2, 1fr); }
  .security-card { flex-direction: column; padding: 48px; gap: 48px; }
  .cta-card { flex-direction: column; padding: 48px; gap: 40px; }
  .cta-phone { display: none; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 40px; letter-spacing: -1.5px; }
  .hero-phones { width: 280px; height: 480px; }
  .phone-front { width: 200px; height: 420px; left: 40px; }
  .phone-back { width: 180px; height: 370px; }
  .float-card { display: none; }
  .mf-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 20px; }
  .security-card { padding: 32px; }
  .cta-card { padding: 32px; }
  .sec-right { display: none; }
  .how-step { max-width: 100%; }
}
