/* ============ Slideit Cinematic — shared styles ============ */
:root {
  --deep: #3E38A3;
  --violet: #9267FC;
  --cyan: #35E1EB;
  --navy: #232033;
  --navy2: #1a1828;
  --lavender: #F4F2FF;
  --muted: #B0A8D0;
  --white: #ffffff;
  --grad-primary: linear-gradient(135deg, #3E38A3 0%, #9267FC 100%);
  --grad-accent: linear-gradient(135deg, #35E1EB 0%, #9267FC 100%);
  --grad-bar: linear-gradient(90deg, #35E1EB 0%, #9267FC 50%, #3E38A3 100%);
  --font-head: 'Montserrat', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--violet); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; }

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

/* ---------- Film grain + vignette ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9990;
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-2%); }
  75% { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}
.vignette {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,8,20,0.5) 100%);
  pointer-events: none; z-index: 9989;
}

/* ---------- Page transition curtain ---------- */
.curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #1a1828 0%, #232033 50%, #2a2145 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.7s;
  opacity: 0; visibility: hidden;
}
.curtain.active { opacity: 1; visibility: visible; }
.curtain img { width: 140px; animation: curtainPulse 1.2s ease-in-out infinite; }
@keyframes curtainPulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.08); opacity: 1; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-bar); z-index: 9998;
  box-shadow: 0 0 12px rgba(53,225,235,0.6);
}

/* ---------- Nav ---------- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s, box-shadow 0.5s;
}
nav.site-nav.scrolled {
  background: rgba(26,24,40,0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 12px 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.nav-logo img { height: 34px; filter: drop-shadow(0 0 14px rgba(146,103,252,0.4)); transition: transform 0.4s; }
.nav-logo:hover img { transform: scale(1.06) rotate(-2deg); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  position: relative; transition: color 0.3s; letter-spacing: 0.3px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0%; height: 2px; border-radius: 2px;
  background: var(--grad-accent); transition: width 0.35s cubic-bezier(0.65,0,0.35,1);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--grad-accent); color: #10101c; font-weight: 700;
  padding: 11px 24px; border-radius: 999px; font-size: 14px;
  box-shadow: 0 6px 24px rgba(53,225,235,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 34px rgba(53,225,235,0.5); }

.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; }
.nav-burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.35s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px; font-weight: 700;
  font-size: 15.5px; border: none; letter-spacing: 0.2px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.btn-primary { background: var(--grad-accent); color: #10101c; box-shadow: 0 10px 34px rgba(53,225,235,0.32); }
.btn-primary:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 48px rgba(53,225,235,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(146,103,252,0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(146,103,252,0.18); border-color: var(--violet); }

/* ---------- Orbs (parallax layers) ---------- */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; will-change: transform;
  filter: blur(70px);
}
.orb-violet { background: radial-gradient(circle at 40% 40%, rgba(146,103,252,0.55), rgba(62,56,163,0.15)); }
.orb-cyan { background: radial-gradient(circle at 40% 40%, rgba(53,225,235,0.4), rgba(53,225,235,0.05)); }
.orb-deep { background: radial-gradient(circle at 40% 40%, rgba(62,56,163,0.6), rgba(35,32,51,0.1)); }

/* ---------- Cinematic reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1), filter 1.1s;
  filter: blur(6px);
  will-change: opacity, transform, filter;
}
[data-reveal="left"] { transform: translateX(-80px); }
[data-reveal="right"] { transform: translateX(80px); }
[data-reveal="zoom"] { transform: scale(0.86); }
[data-reveal="tilt"] { transform: perspective(900px) rotateX(18deg) translateY(60px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* word-by-word cinematic headline */
.cine-words .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
.cine-words .w > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.cine-words.revealed .w > span { transform: translateY(0); }

/* ---------- Ken Burns / pan-zoom media frames ---------- */
.kb-frame {
  overflow: hidden; border-radius: 24px; position: relative;
}
.kb-frame > img, .kb-frame > .kb-inner {
  will-change: transform;
  transform-origin: center;
  transition: transform 0.2s linear;
}

/* ---------- Tilt cards ---------- */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.4s;
}
.tilt-card .tilt-glare {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.14), transparent 55%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.tilt-card:hover .tilt-glare { opacity: 1; }

/* ---------- Sections ---------- */
section { position: relative; padding: 120px 48px; overflow: hidden; }
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--grad-accent); border-radius: 2px; }

.section-title { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 20px; }
.section-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 640px; font-weight: 300; }

.grad-text {
  background: linear-gradient(100deg, #35E1EB 10%, #9267FC 55%, #c4b0ff 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Glass card ---------- */
.glass {
  background: linear-gradient(145deg, rgba(146,103,252,0.10), rgba(62,56,163,0.06));
  border: 1px solid rgba(146,103,252,0.22);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; position: relative; padding: 30px 0; }
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-fade::before, .marquee-fade::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 3; pointer-events: none;
}
.marquee-fade::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee-fade::after { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }

/* ---------- Stats counters ---------- */
.stat-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(42px, 5vw, 68px);
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Footer ---------- */
footer {
  position: relative; background: var(--navy2);
  padding: 90px 48px 40px; overflow: hidden;
  border-top: 1px solid rgba(146,103,252,0.15);
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-bar);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  position: relative; z-index: 2;
}
.footer-grid h4 { font-size: 15px; margin-bottom: 20px; color: #fff; letter-spacing: 1px; }
.footer-grid a, .footer-grid p { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; transition: color 0.3s, transform 0.3s; font-weight: 300; }
.footer-grid a:hover { color: var(--cyan); transform: translateX(4px); }
.footer-bottom {
  max-width: 1200px; margin: 60px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(176,168,208,0.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(176,168,208,0.7); position: relative; z-index: 2; font-weight: 300;
}
.footer-logo img { height: 36px; margin-bottom: 18px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12) rotate(6deg); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0.08); }
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Hero shared ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 48px 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -10%;
  will-change: transform;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(146,103,252,0.28), transparent 65%),
    radial-gradient(ellipse 50% 45% at 20% 75%, rgba(53,225,235,0.14), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(62,56,163,0.3), transparent 70%),
    linear-gradient(180deg, #1a1828 0%, #232033 60%, #201d33 100%);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1) translate(0,0); }
  to { transform: scale(1.12) translate(-1.5%, 1.5%); }
}

/* floating particles */
.float-slow { animation: floatSlow 7s ease-in-out infinite; }
.float-med { animation: floatMed 5.2s ease-in-out infinite; }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(3deg); } }
@keyframes floatMed { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(-4deg); } }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  z-index: 5;
}
.scroll-hint .line {
  width: 1.5px; height: 52px; overflow: hidden; position: relative;
  background: rgba(176,168,208,0.2); border-radius: 2px;
}
.scroll-hint .line::after {
  content: ''; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--grad-accent);
  animation: scrollLine 1.8s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  nav.site-nav { padding: 14px 20px; }
  nav.site-nav.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: rgba(20,18,34,0.97); backdrop-filter: blur(20px);
    gap: 34px; transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.65,0,0.35,1);
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 22px; }
  .nav-burger { display: flex; z-index: 10; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  section, .hero { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 70px 20px 30px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 80px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.2s !important; }
}

/* ============ Brand belts ============ */
.belt-section { padding: 70px 0; overflow: hidden; }
.belt-head { text-align: center; margin-bottom: 40px; padding: 0 24px; }
.belt-head .eyebrow { justify-content: center; }
.belt-head h2 { font-size: clamp(28px, 3.6vw, 46px); }
.belt-head p { color: var(--muted); font-weight: 300; margin-top: 12px; font-size: 16px; }

.belt { position: relative; overflow: hidden; padding: 14px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.belt + .belt { margin-top: 22px; }
.belt-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.belt-track.rtl { animation: beltMoveL var(--belt-speed, 40s) linear infinite; }
.belt-track.ltr { animation: beltMoveR var(--belt-speed, 46s) linear infinite; }
.belt:hover .belt-track { animation-play-state: paused; }
@keyframes beltMoveL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes beltMoveR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.belt-skew { transform: rotate(-2.5deg) scale(1.05); }
.belt-skew2 { transform: rotate(1.8deg) scale(1.05); }

.brand-chip {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  height: 92px; width: 168px; border-radius: 20px;
  background: linear-gradient(150deg, rgba(255,255,255,0.07), rgba(146,103,252,0.05));
  border: 1px solid rgba(146,103,252,0.16);
  backdrop-filter: blur(8px);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.brand-chip img {
  height: 32px; width: auto; max-width: 108px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.62; transition: opacity 0.4s, filter 0.4s, transform 0.4s;
}
.brand-chip:hover {
  transform: translateY(-8px) scale(1.06);
  border-color: rgba(53,225,235,0.55);
  background: linear-gradient(150deg, rgba(53,225,235,0.12), rgba(146,103,252,0.08));
  box-shadow: 0 18px 44px rgba(53,225,235,0.18);
}
.brand-chip:hover img { opacity: 1; transform: scale(1.08); }
.brand-chip.soon { position: relative; }
.brand-chip.soon::after {
  content: 'Soon'; position: absolute; top: 8px; right: 10px;
  font-size: 8.5px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700;
  color: var(--cyan); opacity: 0.7;
}
.brand-chip.soon img { opacity: 0.42; }

/* merchant chips — real logos on uniform white tiles, monochrome by default */
.mbrand {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  height: 96px; width: 172px; border-radius: 20px; padding: 16px;
  background: #ffffff; border: 1px solid rgba(146,103,252,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.mbrand img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  filter: grayscale(1); opacity: 0.92;
  transition: filter 0.4s, opacity 0.4s, transform 0.4s;
}
.mbrand:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 18px 46px rgba(53,225,235,0.22); }
.mbrand:hover img { filter: none; opacity: 1; transform: scale(1.06); }

/* ============ Modern gradient icon tiles ============ */
.ic-tile {
  width: 66px; height: 66px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, rgba(146,103,252,0.22), rgba(53,225,235,0.10));
  border: 1px solid rgba(146,103,252,0.3);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.ic-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(53,225,235,0.35), transparent 60%);
  opacity: 0.8;
}
.ic-tile svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.ic-tile svg [stroke] { stroke: #eafcff; }
.ic-tile svg [fill].fillc { fill: var(--cyan); }
*:hover > .ic-tile, .tilt-card:hover .ic-tile { transform: translateY(-6px) scale(1.08) rotate(-4deg); box-shadow: 0 16px 40px rgba(62,56,163,0.5); }

/* brand-tinted integration logo tile */
.logo-tile {
  width: 78px; height: 78px; border-radius: 20px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,0.3);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.logo-tile img { width: 42px; height: 42px; object-fit: contain; }
.tilt-card:hover .logo-tile { transform: translateY(-6px) scale(1.08) rotate(4deg); }
