/* ============================================================
   Voypin — premium global landing. Fully static, self-hosted assets.
   Design: airy light editorial hero + luxe dark close. Brand gradient
   mirrors the wordmark (mint → blue → violet → emerald).
   ============================================================ */

:root {
  /* surfaces */
  --bg: #f6f8fc;
  --bg-2: #eef2f9;
  --surface: #ffffff;
  --ink: #0b1220;
  --ink-2: #1a2438;
  --body: #515c74;
  --faint: #8b95a9;
  --line: #e6ebf3;
  --line-2: #eef2f8;

  /* brand */
  --mint: #14e0c4;
  --teal: #0bb8a6;
  --blue: #4f86f7;
  --violet: #7c5cff;
  --emerald: #17a06b;
  --accent: #0bb8a6;
  --accent-ink: #08897c;
  --accent-soft: #dbf7f1;

  /* signature gradients */
  --grad-brand: linear-gradient(100deg, #14e0c4 0%, #38b6e6 38%, #4f86f7 62%, #7c5cff 100%);
  --grad-cta: linear-gradient(120deg, #14ddc4, #0bb8a6 55%, #17a06b);
  --grad-soft: linear-gradient(135deg, rgba(20,224,196,.14), rgba(124,92,255,.14));

  /* depth */
  --sh-sm: 0 6px 18px -10px rgba(11, 18, 32, .22);
  --sh-md: 0 20px 45px -24px rgba(11, 18, 32, .30);
  --sh-lg: 0 40px 90px -40px rgba(11, 18, 32, .42);
  --sh-brand: 0 26px 60px -26px rgba(37, 128, 220, .55);

  --r-sm: 14px;
  --r: 20px;
  --r-lg: 30px;
  --r-xl: 40px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }
h1, h2, h3, h4, .display {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.06;
  letter-spacing: -.028em;
  color: var(--ink);
  font-weight: 800;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
section { padding: 118px 0; position: relative; }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
  border: 1px solid rgba(11, 184, 166, .16);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-cta); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); }
.section-head .lead { color: var(--body); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; }
.kicker { color: var(--accent-ink); font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; font-size: 12.5px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800; font-size: 16px; padding: 15px 28px; border-radius: 999px;
  border: none; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 32px 66px -24px rgba(11, 184, 166, .7); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.btn-ghost:hover { transform: translateY(-3px); border-color: #d3dbe8; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 248, 252, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(11,18,32,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 30px; width: auto; }
.brand .tag {
  font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); padding: 5px 11px; border-radius: 999px; border: 1px solid rgba(11,184,166,.18);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; color: var(--body); font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 11px 20px; font-size: 15px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 25px; color: var(--ink); }

/* store-badge text (hero buttons) */
.badge-txt { text-align: start; line-height: 1.05; }
.badge-txt small { display: block; font-size: 11px; font-weight: 600; opacity: .9; }

/* language switcher */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; cursor: pointer; color: var(--ink); box-shadow: var(--sh-sm); }
.lang-btn .caret { color: var(--faint); font-size: 11px; }
.lang-menu { position: absolute; top: 50px; inset-inline-end: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--sh-md); padding: 7px; min-width: 172px; display: none; z-index: 60; }
.lang-menu.open { display: block; }
.lang-menu button { display: flex; align-items: center; gap: 10px; width: 100%; text-align: start; background: none; border: none; padding: 10px 12px; border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink); font-family: inherit; }
.lang-menu button:hover { background: var(--bg-2); }
.lang-menu .flag { font-size: 17px; }

/* ============ RTL + Arabic ============ */
html[lang="ar"] body,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] .display, html[lang="ar"] .btn, html[lang="ar"] .lang-btn,
html[lang="ar"] .stat .n, html[lang="ar"] .s-title { font-family: "Cairo", "Inter", sans-serif; }
html[lang="ar"] .marquee-track span::after { content: "•"; }
[dir="rtl"] .hero-note, [dir="rtl"] .hero-cta { direction: rtl; }
[dir="rtl"] .s-cta,
[dir="rtl"] .badge-txt { text-align: start; }
[dir="rtl"] .s-hero-photo .cap { left: auto; right: 14px; }
[dir="rtl"] .chip-a { left: auto; right: -14%; }
[dir="rtl"] .chip-b { right: auto; left: -12%; }
[dir="rtl"] .chip-c { left: auto; right: -11%; }
@media (max-width: 1180px) {
  [dir="rtl"] .chip-a { right: -6%; }
  [dir="rtl"] .chip-b { left: -4%; }
  [dir="rtl"] .chip-c { right: -4%; }
}

/* ---------- HERO ---------- */
.hero { padding-top: 70px; padding-bottom: 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -10% 0 auto 0; height: 780px; z-index: -1;
  background:
    radial-gradient(680px 440px at 82% 4%, rgba(79,134,247,.20), transparent 62%),
    radial-gradient(560px 440px at 12% 2%, rgba(20,224,196,.20), transparent 60%),
    radial-gradient(680px 520px at 62% 40%, rgba(124,92,255,.10), transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.8vw, 70px); font-weight: 800; }
.hero .sub { font-size: clamp(17px, 1.5vw, 20.5px); color: var(--body); margin: 26px 0 34px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: 14px; font-weight: 600; flex-wrap: wrap; }
.hero-note .dot { width: 5px; height: 5px; border-radius: 50%; background: #c7cfdd; }
.stars { color: #f5a623; letter-spacing: 1px; }

/* ---------- PHONE MOCKUP ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; min-height: 640px; }
.phone-glow {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: var(--grad-brand); filter: blur(90px); opacity: .34; top: 8%; z-index: 0;
  animation: floaty 9s ease-in-out infinite;
}
.phone {
  position: relative; z-index: 2; width: 300px; height: 616px;
  background: linear-gradient(160deg, #10151f, #05070c);
  border-radius: 46px; padding: 11px; box-shadow: var(--sh-lg); border: 1px solid #232c3c;
  animation: floaty 7s ease-in-out infinite;
}
.phone.tilt { transform: rotate(-2.2deg); }
.phone-notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #05070c; border-radius: 999px; z-index: 5;
}
.screen {
  width: 100%; height: 100%; background: var(--bg); border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
}
/* in-app UI (faithful to the app) */
.s-status { height: 34px; }
.s-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 18px 10px; }
.s-head img { height: 20px; }
.s-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); }
.s-body { padding: 4px 16px 16px; display: flex; flex-direction: column; gap: 13px; overflow: hidden; flex: 1; }
.s-title { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.s-sub { font-size: 11.5px; color: var(--faint); margin-top: -8px; }
.s-lens { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--accent-ink); }
.s-lens .spark { color: var(--teal); }

.pcard { border-radius: 18px; overflow: hidden; background: var(--surface); box-shadow: var(--sh-sm); border: 1px solid var(--line-2); }
.pcard .ph { height: 116px; background-size: cover; background-position: center; position: relative; }
.pcard .ph .tagpill {
  position: absolute; top: 9px; left: 9px; background: rgba(11,18,32,.78); color: #fff;
  font-size: 9px; font-weight: 800; padding: 4px 9px; border-radius: 999px; display: inline-flex; gap: 4px; align-items: center;
  backdrop-filter: blur(4px);
}
.pcard .pb { padding: 11px 12px 13px; }
.pcard .pb h4 { font-size: 14.5px; font-weight: 800; }
.pcard .pb .meta { font-size: 11px; color: var(--faint); margin-top: 3px; }
.pcard .pb .note { font-size: 11px; color: var(--body); font-style: italic; margin-top: 7px; }
.pcard .pb .chips { display: flex; gap: 5px; margin-top: 9px; }
.chip { background: var(--accent-soft); color: var(--accent-ink); font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }

/* compact row (saved list / trip) */
.prow { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px; padding: 8px 10px; box-shadow: var(--sh-sm); }
.prow .thumb { width: 42px; height: 42px; border-radius: 11px; background-size: cover; background-position: center; flex: none; }
.prow .rt { flex: 1; min-width: 0; }
.prow .rt b { font-size: 12.5px; font-weight: 800; display: block; }
.prow .rt span { font-size: 10px; color: var(--faint); }
.prow .tick { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #d7dde8; flex: none; }
.prow .tick.on { background: var(--grad-cta); border-color: transparent; position: relative; }
.prow .tick.on::after { content: "✓"; color: #fff; font-size: 11px; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.prow.done b { color: var(--faint); text-decoration: line-through; }

.s-tabs { display: flex; gap: 8px; }
.s-tab { font-size: 11px; font-weight: 800; padding: 6px 13px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--body); }
.s-tab.on { background: var(--grad-cta); color: #fff; border-color: transparent; }

.s-cta { margin-top: auto; background: var(--grad-cta); color: #fff; text-align: center; font-weight: 800; font-size: 13px; padding: 13px; border-radius: 999px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.s-hero-photo { height: 200px; border-radius: 18px; background-size: cover; background-position: center; position: relative; box-shadow: var(--sh-sm); }
.s-hero-photo .grad { position: absolute; inset: 0; border-radius: 18px; background: linear-gradient(to top, rgba(4,8,14,.82), transparent 55%); }
.s-hero-photo .cap { position: absolute; left: 14px; bottom: 12px; right: 14px; color: #fff; }
.s-hero-photo .cap h4 { color: #fff; font-size: 17px; }
.s-hero-photo .cap span { font-size: 11px; opacity: .9; }

/* floating glass chips around hero phone */
.chip-float {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; padding: 11px 14px;
  box-shadow: var(--sh-md); font-size: 13px; font-weight: 700; color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}
.chip-float .ic { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex: none; }
.chip-float .ic svg { width: 17px; height: 17px; }
.chip-float small { display: block; font-size: 10.5px; font-weight: 600; color: var(--faint); }
.chip-float { max-width: 220px; }
.chip-a { top: 3%; left: -14%; animation-delay: .4s; }
.chip-b { top: 47%; right: -12%; animation-delay: 1.4s; }
.chip-c { bottom: 5%; left: -11%; animation-delay: .9s; }
@media (max-width: 1180px) {
  .chip-a { left: -6%; }
  .chip-b { right: -4%; }
  .chip-c { left: -4%; }
}

/* ---------- CITIES MARQUEE ---------- */
.cities { padding: 40px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.cities .label { text-align: center; color: var(--faint); font-weight: 700; font-size: 13px; letter-spacing: .4px; margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee-track span { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 22px; color: #aeb8c9; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 46px; }
.marquee-track span::after { content: "•"; color: var(--mint); }

/* ---------- HOW ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px; box-shadow: var(--sh-sm); position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step .num { width: 50px; height: 50px; border-radius: 15px; background: var(--grad-cta); color: #fff; font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--sh-brand); }
.step h3 { font-size: 21px; }
.step p { color: var(--body); margin-top: 10px; font-size: 15px; }
.step .edge { position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: var(--grad-soft); filter: blur(30px); border-radius: 50%; }

/* ---------- SHOWCASE (phone gallery) ---------- */
.showcase { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; max-width: 1040px; margin: 0 auto; align-items: start; }
.gcol { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.gcol .phone { width: 272px; height: 560px; animation: none; }
.gcol.mid { margin-top: -26px; }
.gcap { text-align: center; max-width: 300px; }
.gcap h3 { font-size: 19px; }
.gcap p { color: var(--body); font-size: 14.5px; margin-top: 7px; }

/* ---------- FEATURES (bento) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
  display: flex; flex-direction: column;  /* content-driven, no stretched voids */
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tile.c2 { grid-column: span 2; }
.tile.c3 { grid-column: span 3; }
.tile .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tile .ic svg { width: 25px; height: 25px; }
.tile h3 { font-size: 19px; }
.tile p { color: var(--body); margin-top: 9px; font-size: 14.5px; }

/* wide horizontal hero-feature: text + full-bleed photo, fixed elegant height */
.tile.feature { grid-column: 1 / -1; padding: 0; display: grid; grid-template-columns: 1.12fr .88fr; align-items: stretch; }
.tile.feature .fw-text { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.tile.feature .fw-text p { font-size: 15.5px; max-width: 460px; }
.tile.feature .fw-img { min-height: 300px; background-size: cover; background-position: center; }
.tile.dark { background: linear-gradient(150deg, #0f1626, #070b14); border-color: #1c2536; color: #dbe3f0; }
.tile.dark h3 { color: #fff; }
.tile.dark p { color: #9aa6bc; }
.tile.dark .ic { background: rgba(20,224,196,.14); color: var(--mint); }
.tile.feature .fw-img::after { content: ""; position: absolute; }

/* ---------- BUSINESS ---------- */
.biz-wrap {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; padding: 56px; align-items: center; overflow: hidden; position: relative;
}
.biz-wrap::before { content: ""; position: absolute; width: 300px; height: 300px; right: -60px; top: -80px; background: var(--grad-soft); filter: blur(50px); border-radius: 50%; }
.biz-wrap h2 { font-size: clamp(26px, 3.4vw, 40px); }
.biz-wrap p { color: var(--body); font-size: 17px; margin: 18px 0 26px; }
.biz-list { display: flex; flex-direction: column; gap: 14px; position: relative; }
.biz-item { display: flex; align-items: center; gap: 15px; background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; transition: transform .2s var(--ease); }
.biz-item:hover { transform: translateX(5px); }
.biz-item .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); color: var(--accent-ink); display: flex; align-items: center; justify-content: center; flex: none; }
.biz-item .ic svg { width: 24px; height: 24px; }
.biz-item b { display: block; font-size: 15.5px; }
.biz-item span { font-size: 13px; color: var(--faint); }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 22px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 148px; }
.stat .n { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: clamp(26px, 3vw, 36px); line-height: 1.06; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
.stat .l { color: var(--body); font-size: 14px; margin-top: 10px; font-weight: 600; }

/* ---------- DOWNLOAD (dark luxe) ---------- */
.download { padding-bottom: 130px; }
.dl-card {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #0c1220 0%, #0a1a2a 55%, #0b1220 100%);
  border-radius: var(--r-xl); padding: 74px 40px; text-align: center; color: #fff; box-shadow: var(--sh-lg);
  border: 1px solid #1b2740;
}
.dl-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(20,224,196,.28), transparent 60%), radial-gradient(500px 300px at 85% 120%, rgba(124,92,255,.24), transparent 60%); }
.dl-card > * { position: relative; }
.dl-card h2 { font-size: clamp(30px, 4.4vw, 52px); color: #fff; }
.dl-card p { font-size: 19px; color: #b9c4d8; margin: 18px auto 34px; max-width: 560px; }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 13px; background: #fff; color: #0b1220;
  padding: 13px 24px; border-radius: 16px; font-weight: 700; transition: transform .2s var(--ease), box-shadow .2s;
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.6);
}
.store-badge:hover { transform: translateY(-3px); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge small { display: block; font-size: 11px; font-weight: 600; opacity: .7; }
.store-badge b { display: block; font-size: 18px; letter-spacing: -.01em; }
.dl-mini { margin-top: 26px; color: #7f8ba3; font-size: 13.5px; font-weight: 600; }

/* ---------- FOOTER ---------- */
footer { background: #080c15; color: #aeb8c9; padding: 74px 0 34px; }
.f-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; }
.f-brand img { height: 30px; filter: brightness(0) invert(1); opacity: .95; }
.f-brand .t { margin-top: 16px; font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 18px; background: linear-gradient(100deg, #2ee6c5, #6aa8ff 60%, #9d84ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.f-brand p { color: #667389; font-size: 13.5px; margin-top: 10px; max-width: 300px; }
.f-col h4 { color: #fff; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; }
.f-col a { display: block; color: #9199ac; font-size: 14px; margin-bottom: 11px; transition: color .15s; }
.f-col a:hover { color: #fff; }
.f-bottom { border-top: 1px solid #17203200; border-top-color: #161f30; margin-top: 52px; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-bottom span { color: #667389; font-size: 13px; }
.f-bottom a { color: #aeb8c9; font-weight: 700; font-size: 13px; }
.f-bottom a:hover { color: #fff; }

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

/* ---------- keyframes ---------- */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes scrollx { to { transform: translateX(-50%); } }
.phone.tilt { animation: floaty 7s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .phone, .phone-glow, .chip-float, .marquee-track { animation: none !important; }
  .reveal { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.c2 { grid-column: span 1; }
  .tile.c3 { grid-column: span 2; }
  .tile.feature { grid-template-columns: 1fr; }
  .tile.feature .fw-img { min-height: 240px; order: 2; }
  .gallery { grid-template-columns: 1fr; gap: 54px; }
  .gcol.mid { margin-top: 0; }
}
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: 20px 26px; gap: 18px; box-shadow: var(--sh-md); }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero .sub { margin-inline: auto; }
  .hero-cta, .hero-note { justify-content: center; }
  .phone-stage { margin-top: 20px; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .biz-wrap { grid-template-columns: 1fr; padding: 36px; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .chip-b { right: -2%; }
  .chip-a { left: 0; }
}
@media (max-width: 560px) {
  .brand .tag { display: none; }
  .nav-actions .btn.hide-sm { display: none; }
  section { padding: 60px 0; }
  .bento { grid-template-columns: 1fr; }
  .tile.c2, .tile.c3 { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .dl-card { padding: 48px 22px; }
  .chip-float { display: none; }
}
