@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/vazirmatn-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #07172f;
  --ink-soft: #536175;
  --navy: #06152b;
  --navy-2: #0a2140;
  --blue: #5268f5;
  --blue-bright: #6c7cff;
  --cyan: #1cd5cf;
  --purple: #8a6cff;
  --mint: #43e6b4;
  --paper: #f4f7fb;
  --white: #fff;
  --line: rgba(7, 23, 47, .1);
  --shadow: 0 28px 80px rgba(11, 31, 67, .12);
  --radius-lg: 32px;
  --radius-md: 23px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #edf1f7;
}

::-webkit-scrollbar-thumb {
  background: #bac4d3;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 132px 0;
}

.section-dark {
  position: relative;
  color: #fff;
  background: var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  right: 12px;
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform .25s;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  transition: opacity .55s var(--ease), visibility .55s;
  animation: loaderFailsafe .55s var(--ease) 3s forwards;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.no-js .page-loader {
  animation-delay: 1.2s;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 27px;
  font-weight: 800;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

.loader-mark,
.brand-mark {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  border-radius: 14px 14px 14px 5px;
  box-shadow: 0 10px 30px rgba(82, 104, 245, .3);
}

.loader-mark i,
.brand-mark i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(24deg);
}

.loader-mark i::after,
.brand-mark i::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 3px;
  right: -4px;
  bottom: -2px;
  background: #fff;
  border-radius: 4px;
  transform: rotate(48deg);
}

.loader-line {
  position: absolute;
  width: 150px;
  height: 2px;
  margin-top: 95px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}

.loader-line i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: translateX(-100%);
  animation: loaderLine 1.1s infinite;
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue-bright), var(--purple));
  box-shadow: 0 0 14px var(--cyan);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 440px;
  height: 440px;
  pointer-events: none;
  opacity: .08;
  background: radial-gradient(circle, var(--blue-bright), transparent 67%);
  border-radius: 50%;
  translate: -50% -50%;
  will-change: left, top;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  right: 0;
  left: 0;
  transition: top .35s var(--ease);
}

.header-inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 12px;
  color: #fff;
  background: rgba(7, 23, 47, .62);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 23px;
  box-shadow: 0 18px 55px rgba(0, 7, 22, .22);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: height .35s var(--ease), background .35s, border-color .35s;
}

.site-header.scrolled {
  top: 8px;
}

.site-header.scrolled .header-inner {
  height: 68px;
  background: rgba(6, 21, 43, .88);
  border-color: rgba(255,255,255,.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 13px 13px 13px 5px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.7px;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  letter-spacing: .6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 500;
  transition: color .25s;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 24px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 700;
  line-height: 1;
  isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s;
}

.btn::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 80px;
  height: 180%;
  top: -40%;
  left: -110px;
  opacity: .35;
  background: #fff;
  filter: blur(3px);
  transform: rotate(20deg);
  transition: left .65s var(--ease);
}

.btn:hover::before {
  left: calc(100% + 45px);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-sm {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 12px;
}

.btn-lg {
  min-height: 59px;
  padding-inline: 28px;
  border-radius: 18px;
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6676ff, #4d5fe9);
  box-shadow: 0 16px 35px rgba(82, 104, 245, .35), inset 0 1px rgba(255,255,255,.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(82, 104, 245, .48), inset 0 1px rgba(255,255,255,.25);
}

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
}

.btn-glass {
  color: #fff;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.btn-white {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 35px rgba(0, 8, 25, .16);
}

.btn-outline-white {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.24);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 940px;
  padding: 185px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(82,104,245,.25), transparent 27%),
    radial-gradient(circle at 78% 45%, rgba(28,213,207,.11), transparent 29%),
    linear-gradient(155deg, #06152b 0%, #071a37 48%, #061329 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 96px;
  content: "";
  background: var(--paper);
  clip-path: polygon(0 74%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 45%, transparent 0, var(--navy) 72%);
}

.orb {
  position: absolute;
  opacity: .18;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  filter: blur(.1px);
}

.orb::before {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: inherit;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -210px;
  right: -130px;
  animation: slowSpin 28s linear infinite;
}

.orb-two {
  width: 300px;
  height: 300px;
  bottom: 90px;
  left: -160px;
  animation: slowSpin 24s linear infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 65px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  padding: 8px 13px;
  color: #bfcaff;
  background: rgba(101,119,255,.1);
  border: 1px solid rgba(113,132,255,.2);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--mint);
  border-radius: 50%;
  animation: ping 1.8s infinite;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -3.4px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(115deg, #fff 0%, #aeb8ff 37%, #56e1db 94%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 585px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.61);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

.mini-avatars {
  display: flex;
  direction: ltr;
}

.mini-avatars span {
  display: grid;
  width: 35px;
  height: 35px;
  margin-right: -9px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #243e6f, #152949);
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.mini-avatars span:nth-child(2) {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.mini-avatars span:nth-child(3) {
  color: #06261e;
  background: var(--mint);
}

.trust-row p {
  display: grid;
  margin: 0;
  line-height: 1.45;
}

.trust-row strong {
  font-size: 12px;
}

.trust-row small {
  margin-top: 3px;
  color: rgba(255,255,255,.46);
  font-size: 10px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  perspective: 1200px;
}

.hero-visual::before {
  position: absolute;
  width: 455px;
  height: 455px;
  content: "";
  opacity: .45;
  background: radial-gradient(circle, rgba(90,111,255,.43), rgba(28,213,207,.06) 51%, transparent 70%);
  border-radius: 50%;
  filter: blur(5px);
  animation: glowBreath 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  transform: rotateX(62deg) rotateZ(-15deg);
}

.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 38px;
  left: 88px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan);
}

.orbit-a {
  animation: orbitSpin 18s linear infinite;
}

.orbit-b {
  width: 550px;
  height: 550px;
  opacity: .5;
  transform: rotateX(72deg) rotateZ(28deg);
  animation: orbitSpinAlt 22s linear infinite reverse;
}

.phone-wrap {
  position: relative;
  z-index: 3;
  width: 284px;
  height: 575px;
  transform: rotateY(-9deg) rotateX(2deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  animation: phoneFloat 5.5s ease-in-out infinite;
}

.phone-shell {
  position: absolute;
  inset: 0;
  padding: 9px;
  background: linear-gradient(145deg, #456085, #0d1c34 32%, #46638d 96%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 44px;
  box-shadow: -35px 50px 80px rgba(0,0,0,.45), inset 0 0 0 2px rgba(3,11,25,.8), inset -3px 3px 4px rgba(255,255,255,.18);
}

.phone-edge {
  position: absolute;
  width: 3px;
  height: 76px;
  top: 118px;
  left: -4px;
  background: #30486b;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 89px #30486b;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(#f8faff, #eef3fa);
  border-radius: 36px;
}

.phone-status {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  color: #25344c;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
}

.phone-island {
  width: 69px;
  height: 20px;
  background: #07111f;
  border-radius: 20px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px 15px;
}

.app-head > div {
  display: grid;
  line-height: 1.35;
}

.app-head small {
  color: #8b97a8;
  font-size: 8px;
}

.app-head strong {
  margin-top: 4px;
  font-size: 12px;
}

.app-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #7487ff);
  border-radius: 12px 12px 12px 4px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 17px rgba(82,104,245,.25);
}

.credit-card {
  position: relative;
  height: 153px;
  margin: 0 15px;
  padding: 17px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #122b51, #435eea 95%);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(27,57,128,.23);
}

.credit-card::before,
.credit-card::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.credit-card::before {
  width: 160px;
  height: 160px;
  top: -95px;
  left: -55px;
}

.credit-card::after {
  width: 110px;
  height: 110px;
  right: -44px;
  bottom: -75px;
}

.card-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -70px;
  right: 60px;
  background: rgba(28,213,207,.18);
  border-radius: 50%;
  filter: blur(22px);
}

.card-top,
.card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top {
  color: rgba(255,255,255,.65);
  font-size: 8px;
}

.card-logo {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.card-value {
  position: relative;
  z-index: 1;
  margin-top: 21px;
  font-size: 16px;
  font-weight: 800;
}

.card-meta {
  margin-top: 19px;
  color: rgba(255,255,255,.58);
  font-size: 8px;
}

.card-meta strong {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 8px;
}

.card-meta i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}

.quick-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 17px 10px;
  font-size: 9px;
}

.quick-title span {
  color: var(--blue);
  font-size: 7px;
}

.app-progress {
  margin: 0 15px;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  box-shadow: 0 9px 22px rgba(15,41,83,.05);
}

.progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #728096;
  font-size: 7px;
}

.progress-head strong {
  color: var(--blue);
  font-size: 8px;
}

.progress-track {
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  background: #ecf0f6;
  border-radius: 8px;
}

.progress-track i {
  display: block;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: inherit;
  animation: progressIn 2.2s var(--ease) both .5s;
}

.app-steps {
  margin: 12px 15px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 17px;
}

.app-steps > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.app-steps > div:not(:last-child)::after {
  position: absolute;
  width: 1px;
  height: 13px;
  right: 10px;
  bottom: -6px;
  content: "";
  background: #dfe5ed;
}

.app-steps > div > span {
  display: grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  background: #ebeff6;
  border-radius: 7px;
  font-size: 7px;
  font-weight: 800;
}

.app-steps .done > span {
  color: #11674e;
  background: #dff9ef;
}

.app-steps .active > span {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 12px rgba(82,104,245,.24);
}

.app-steps p {
  display: grid;
  margin: 0;
  line-height: 1.2;
}

.app-steps strong {
  font-size: 8px;
}

.app-steps small {
  margin-top: 4px;
  color: #99a3b3;
  font-size: 6px;
}

.float-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  min-width: 192px;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 17px;
  box-shadow: 0 20px 45px rgba(0,8,25,.22);
  backdrop-filter: blur(15px);
  transition: transform .2s ease-out;
}

.float-chip > span:last-child {
  display: grid;
  line-height: 1.35;
}

.float-chip small {
  color: #8c97a8;
  font-size: 7px;
}

.float-chip strong {
  margin-top: 3px;
  font-size: 9px;
}

.chip-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
}

.chip-icon svg {
  width: 18px;
  height: 18px;
}

.chip-success {
  color: #176b53;
  background: #def9ed;
}

.chip-blue {
  color: var(--blue);
  background: #e8ebff;
}

.chip-top {
  top: 90px;
  right: -7px;
  animation: chipFloat 4.5s ease-in-out infinite .2s;
}

.chip-side {
  bottom: 100px;
  left: -18px;
  animation: chipFloat 5s ease-in-out infinite reverse;
}

.visual-shadow {
  position: absolute;
  z-index: 1;
  width: 270px;
  height: 50px;
  bottom: 0;
  opacity: .8;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  filter: blur(26px);
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  padding-left: 43%;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-note > span {
  color: var(--cyan);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.hero-note p {
  display: grid;
  margin: 0;
  line-height: 1.4;
}

.hero-note strong {
  font-size: 10px;
}

.hero-note small {
  margin-top: 4px;
  color: rgba(255,255,255,.42);
  font-size: 8px;
}

.download-strip {
  position: relative;
  z-index: 5;
  margin-top: -13px;
  padding: 22px 0 80px;
}

.download-panel {
  position: relative;
  display: grid;
  min-height: 230px;
  grid-template-columns: 170px 1fr 1.15fr;
  align-items: center;
  gap: 28px;
  padding: 30px 35px;
  overflow: hidden;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 34px;
  box-shadow: 0 32px 95px rgba(14,38,76,.13), inset 0 1px #fff;
  backdrop-filter: blur(15px);
}

.download-panel::before {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -200px;
  left: 10%;
  content: "";
  opacity: .32;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(80px);
}

.download-visual {
  position: relative;
  display: grid;
  height: 160px;
  place-items: center;
}

.android-logo {
  position: relative;
  z-index: 3;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-bright), #4658db);
  border-radius: 29px 29px 29px 11px;
  box-shadow: 0 22px 45px rgba(82,104,245,.28), inset 0 1px rgba(255,255,255,.3);
  transform: rotate(-7deg);
}

.android-logo svg {
  width: 50px;
  height: 50px;
  stroke-width: 2.1;
}

.android-ring {
  position: absolute;
  border: 1px dashed rgba(82,104,245,.28);
  border-radius: 50%;
}

.ring-one {
  width: 145px;
  height: 145px;
  animation: slowSpin 12s linear infinite;
}

.ring-two {
  width: 118px;
  height: 118px;
  border-style: solid;
  border-color: rgba(28,213,207,.28);
  animation: slowSpin 9s linear infinite reverse;
}

.ring-two::after {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 13px;
  left: 14px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 11px var(--cyan);
}

.download-copy {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
}

.section-kicker.light {
  color: #9eacff;
}

.download-copy h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.45;
  letter-spacing: -1.4px;
}

.download-copy p {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.store-buttons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-btn {
  display: flex;
  min-height: 65px;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 17px;
  box-shadow: 0 12px 25px rgba(7,23,47,.1);
  transition: transform .3s var(--ease), box-shadow .3s, filter .3s;
}

.store-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 17px 34px rgba(7,23,47,.2);
  transform: translateY(-4px);
}

.store-btn > span:last-child {
  display: grid;
  line-height: 1.25;
}

.store-btn small {
  color: rgba(255,255,255,.55);
  font-size: 7px;
}

.store-btn strong {
  margin-top: 4px;
  font-size: 11px;
}

.store-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.09);
  border-radius: 11px;
  font-size: 18px;
  font-weight: 800;
}

.store-icon svg {
  width: 19px;
  height: 19px;
}

.store-direct {
  grid-row: span 2;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #5368f2, #3448c9);
}

.store-direct .store-icon {
  width: 44px;
  height: 44px;
}

.store-bazaar {
  background: #14875f;
}

.store-myket {
  background: #0d4f91;
}

.bazaar-symbol {
  font-size: 17px;
}

.myket-symbol {
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.category-marquee {
  direction: ltr;
  overflow: hidden;
  padding: 17px 0;
  color: #31415a;
  background: #fff;
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-right: 34px;
  direction: rtl;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 2px;
  transform: rotate(45deg);
}

.features {
  position: relative;
  overflow: hidden;
}

.features::before {
  position: absolute;
  width: 580px;
  height: 580px;
  top: -200px;
  right: -290px;
  content: "";
  opacity: .05;
  background: repeating-radial-gradient(circle, var(--blue) 0 1px, transparent 2px 15px);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.section-heading h2,
.journey h2,
.status-copy h2,
.faq-heading h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -2.5px;
}

.section-heading h2 span {
  color: #6d7a8c;
}

.section-heading > p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 29px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(7,23,47,.08);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(20,43,82,.06);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}

.feature-card:hover {
  border-color: rgba(82,104,245,.18);
  box-shadow: 0 25px 70px rgba(20,43,82,.11);
  transform: translateY(-7px);
}

.feature-main {
  display: grid;
  min-height: 470px;
  grid-column: span 7;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 25px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(82,104,245,.37), transparent 37%),
    linear-gradient(145deg, #071b38, #0a2548);
  border-color: rgba(255,255,255,.08);
}

.feature-main::before {
  position: absolute;
  width: 270px;
  height: 270px;
  bottom: -130px;
  right: 20%;
  content: "";
  background: rgba(28,213,207,.1);
  border-radius: 50%;
  filter: blur(40px);
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.feature-main .feature-index {
  color: var(--cyan);
}

.feature-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -.8px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.feature-main p {
  color: rgba(255,255,255,.53);
}

.mini-dashboard {
  position: relative;
  z-index: 2;
  width: 110%;
  min-height: 330px;
  margin-left: -14%;
  padding: 19px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  box-shadow: -25px 35px 65px rgba(0,0,0,.26);
  transform: perspective(800px) rotateY(-11deg) rotateX(4deg) rotateZ(-1deg);
}

.mini-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mini-bar span {
  width: 45px;
  height: 12px;
  background: #e3e9f2;
  border-radius: 6px;
}

.mini-bar i {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
}

.mini-title span,
.mini-title i {
  display: block;
  height: 9px;
  background: #dfe5ee;
  border-radius: 6px;
}

.mini-title span {
  width: 58%;
}

.mini-title i {
  width: 35%;
  height: 6px;
  margin-top: 8px;
  opacity: .7;
}

.mini-card {
  position: relative;
  height: 85px;
  margin: 20px 0 14px;
  padding: 15px;
  background: linear-gradient(135deg, #5369f3, #7889ff);
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(82,104,245,.22);
}

.mini-card span,
.mini-card b,
.mini-card i {
  display: block;
  background: rgba(255,255,255,.77);
  border-radius: 5px;
}

.mini-card span {
  width: 45%;
  height: 8px;
}

.mini-card b {
  width: 66%;
  height: 14px;
  margin-top: 13px;
}

.mini-card i {
  position: absolute;
  width: 33px;
  height: 33px;
  top: 16px;
  left: 16px;
  opacity: .35;
  border-radius: 50%;
}

.mini-row {
  display: grid;
  grid-template-columns: 28px 1fr 34px;
  align-items: center;
  gap: 10px;
  margin-top: 9px;
  padding: 9px;
  background: #f7f9fc;
  border: 1px solid #edf0f5;
  border-radius: 11px;
}

.mini-row i {
  height: 28px;
  background: #e1e7ff;
  border-radius: 8px;
}

.mini-row span {
  width: 72%;
  height: 7px;
  background: #dce2ea;
  border-radius: 5px;
}

.mini-row b {
  height: 7px;
  background: #d9f5eb;
  border-radius: 5px;
}

.mini-row.muted {
  opacity: .62;
}

.feature-status,
.feature-docs {
  grid-column: span 5;
}

.feature-status {
  min-height: 290px;
  background: linear-gradient(145deg, #f9f7ff, #fff);
}

.feature-docs {
  min-height: 290px;
  background: linear-gradient(145deg, #f3fffd, #fff);
}

.feature-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 15px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-icon.purple {
  color: #7255ed;
  background: #eee9ff;
}

.feature-icon.cyan {
  color: #087e7a;
  background: #dff9f6;
}

.status-pulse {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  color: #674cda;
  background: #f0edff;
  border: 1px solid #e4defe;
  border-radius: 13px;
  font-size: 9px;
  font-weight: 700;
}

.status-pulse i {
  position: relative;
  width: 7px;
  height: 7px;
  background: #785cf1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(120,92,241,.1);
  animation: smallPulse 1.8s infinite;
}

.doc-stack {
  position: absolute;
  width: 120px;
  height: 82px;
  right: 29px;
  bottom: 23px;
}

.doc-stack span {
  position: absolute;
  display: grid;
  width: 76px;
  height: 72px;
  place-items: center;
  background: #fff;
  border: 1px solid #dceae8;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(24,80,75,.08);
}

.doc-stack span:nth-child(1) {
  right: 35px;
  transform: rotate(10deg);
}

.doc-stack span:nth-child(2) {
  right: 18px;
  transform: rotate(4deg);
}

.doc-stack span:nth-child(3) {
  right: 0;
}

.doc-stack i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #08785e;
  background: #dff9ef;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.feature-support {
  display: grid;
  min-height: 162px;
  grid-column: span 12;
  grid-template-columns: 1fr 270px;
  align-items: center;
  background: linear-gradient(105deg, #fff, #eef3ff);
}

.feature-support h3 {
  font-size: 22px;
}

.feature-support p {
  max-width: 570px;
  margin-top: 7px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: var(--blue);
  direction: ltr;
  font-size: 13px;
  font-weight: 800;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.support-orbit {
  position: relative;
  width: 140px;
  height: 140px;
  margin-inline: auto;
  border: 1px dashed rgba(82,104,245,.25);
  border-radius: 50%;
  animation: slowSpin 12s linear infinite;
}

.support-orbit::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(82,104,245,.13);
  border-radius: inherit;
}

.support-orbit b {
  position: absolute;
  display: grid;
  width: 64px;
  height: 64px;
  top: 37px;
  left: 37px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--purple));
  border-radius: 22px 22px 22px 8px;
  box-shadow: 0 15px 30px rgba(82,104,245,.27);
  font-size: 22px;
  animation: slowSpin 12s linear infinite reverse;
}

.support-orbit i,
.support-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--cyan);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(28,213,207,.4);
}

.support-orbit i {
  top: 9px;
  left: 21px;
}

.support-orbit span {
  right: 4px;
  bottom: 33px;
  background: var(--purple);
}

.journey {
  padding-block: 145px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 70%, rgba(82,104,245,.19), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(28,213,207,.1), transparent 22%),
    linear-gradient(145deg, #06152b, #081d3b);
}

.journey::before {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -430px;
  left: -280px;
  content: "";
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.015), 0 0 0 160px rgba(255,255,255,.01);
}

.journey-noise {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.35) .6px, transparent .6px);
  background-size: 8px 8px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.journey-layout {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 100px;
}

.journey-copy {
  position: sticky;
  top: 140px;
}

.journey h2 {
  font-size: clamp(40px, 4.2vw, 57px);
}

.journey-copy > p {
  max-width: 420px;
  margin: 21px 0 28px;
  color: rgba(255,255,255,.53);
  font-size: 14px;
  line-height: 2;
}

.journey-steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.journey-steps::before {
  position: absolute;
  width: 1px;
  top: 48px;
  right: 38px;
  bottom: 48px;
  content: "";
  background: linear-gradient(transparent, rgba(120,137,255,.65), rgba(28,213,207,.45), transparent);
}

.journey-step {
  position: relative;
  display: grid;
  min-height: 188px;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  gap: 20px;
  padding: 31px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 25px;
  backdrop-filter: blur(12px);
  transition: background .35s, border-color .35s, transform .35s var(--ease);
}

.journey-step::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(100deg, rgba(82,104,245,.12), transparent 60%);
  border-radius: inherit;
  transition: opacity .35s;
}

.journey-step:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(117,134,255,.35);
  transform: translateX(-8px);
}

.journey-step:hover::after {
  opacity: 1;
}

.step-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #b6c1ff;
  background: #152a4b;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.step-number i {
  position: absolute;
  width: 7px;
  height: 7px;
  top: -4px;
  left: -4px;
  background: var(--cyan);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
}

.journey-step > div:nth-child(2) {
  position: relative;
  z-index: 2;
}

.journey-step small {
  color: #8797b1;
  font-size: 9px;
}

.journey-step h3 {
  margin: 3px 0 0;
  font-size: 21px;
}

.journey-step p {
  max-width: 500px;
  margin: 9px 0 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  line-height: 1.9;
}

.journey-step > svg {
  position: relative;
  z-index: 2;
  width: 18px;
  color: rgba(255,255,255,.28);
  transition: color .3s, transform .3s;
}

.journey-step:hover > svg {
  color: var(--cyan);
  transform: translateX(-4px);
}

.status-demo {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.status-demo::before {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -200px;
  bottom: -300px;
  content: "";
  opacity: .08;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(80px);
}

.status-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 90px;
}

.status-interface {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #f8faff;
  border: 1px solid #e3e9f2;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(16,42,84,.14);
  transform: perspective(1200px) rotateY(5deg) rotateX(1deg);
}

.status-interface::after {
  position: absolute;
  width: 150px;
  height: 150px;
  left: -50px;
  bottom: -60px;
  content: "";
  opacity: .25;
  background: var(--cyan);
  border-radius: 50%;
  filter: blur(50px);
}

.interface-top {
  display: grid;
  height: 50px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 18px;
  color: #8b98aa;
  background: #fff;
  border-bottom: 1px solid #e7ebf2;
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 8px;
}

.interface-dots {
  display: flex;
  gap: 5px;
}

.interface-dots i {
  width: 7px;
  height: 7px;
  background: #ff776f;
  border-radius: 50%;
}

.interface-dots i:nth-child(2) {
  background: #f7c357;
}

.interface-dots i:nth-child(3) {
  background: #50cf8b;
}

.interface-top span {
  justify-self: center;
  padding: 5px 35px;
  background: #f2f5f9;
  border-radius: 6px;
}

.interface-top b {
  justify-self: end;
  color: var(--blue);
  font-family: "Vazirmatn", sans-serif;
  font-size: 10px;
}

.interface-body {
  display: grid;
  min-height: 400px;
  grid-template-columns: 74px 1fr;
  direction: ltr;
}

.interface-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  padding-top: 32px;
  background: #0a1d39;
}

.interface-body aside span {
  width: 23px;
  height: 7px;
  opacity: .34;
  background: #b3c0d3;
  border-radius: 5px;
}

.interface-body aside span:first-child {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  opacity: 1;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 11px;
}

.interface-body aside span.active {
  opacity: 1;
  background: var(--cyan);
}

.interface-main {
  padding: 32px;
  direction: rtl;
}

.interface-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interface-title > div {
  display: grid;
  line-height: 1.45;
}

.interface-title small {
  color: #98a2b2;
  font-size: 8px;
}

.interface-title strong {
  margin-top: 5px;
  font-size: 14px;
}

.interface-title > span {
  padding: 6px 10px;
  color: #3251c4;
  background: #e5eaff;
  border-radius: 7px;
  font-size: 7px;
  font-weight: 700;
}

.interface-card {
  margin-top: 27px;
  padding: 21px;
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: 18px;
  box-shadow: 0 13px 30px rgba(22,49,92,.06);
}

.file-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.file-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #7e8eff);
  border-radius: 12px;
  font-size: 11px;
}

.file-head > div {
  display: grid;
  margin-left: auto;
  line-height: 1.35;
}

.file-head strong {
  font-size: 10px;
}

.file-head small {
  margin-top: 4px;
  color: #9ca6b5;
  font-size: 6px;
}

.file-head b {
  padding: 6px 9px;
  color: #6b4ddc;
  background: #eeeaff;
  border-radius: 7px;
  font-size: 7px;
}

.file-progress {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

.file-progress::before {
  position: absolute;
  height: 2px;
  top: 5px;
  right: 5px;
  left: 5px;
  content: "";
  background: linear-gradient(90deg, #e5e9f0 25%, var(--blue) 25% 100%);
}

.file-progress i {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border: 3px solid #e8ebff;
  border-radius: 50%;
}

.file-progress i:last-child {
  background: #d7dde6;
  border-color: #f0f2f6;
}

.file-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #929dac;
  font-size: 6px;
}

.interface-squares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.interface-squares span {
  height: 75px;
  background: linear-gradient(135deg, #fff, #f3f6fb);
  border: 1px solid #e5eaf1;
  border-radius: 13px;
}

.status-copy h2 {
  font-size: clamp(38px, 4vw, 55px);
}

.status-copy > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.05;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #34445c;
  font-size: 13px;
  font-weight: 600;
}

.check-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #14775b;
  background: #dff8ef;
  border-radius: 8px;
  font-size: 10px;
}

.faq {
  background: linear-gradient(180deg, #f4f7fb, #edf2f8);
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 135px;
}

.faq-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.faq-heading > p {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.support-number {
  display: inline-grid;
  margin-top: 25px;
  padding: 13px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(23,48,88,.06);
  direction: ltr;
  line-height: 1.35;
}

.support-number small {
  color: #8c98a9;
  direction: rtl;
  font-size: 8px;
}

.support-number strong {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: .7px;
}

.accordion {
  display: grid;
  gap: 11px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(7,23,47,.08);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(19,42,78,.045);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.faq-item.active {
  background: #fff;
  border-color: rgba(82,104,245,.2);
  box-shadow: 0 18px 50px rgba(19,42,78,.09);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}

.faq-item button i {
  position: relative;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  margin-right: 15px;
  background: #eff2f7;
  border-radius: 9px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  width: 10px;
  height: 1.5px;
  top: 14px;
  left: 9px;
  content: "";
  background: #5e6d83;
  border-radius: 2px;
  transition: transform .3s;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.active button i {
  background: #e9edff;
}

.faq-item.active button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 2;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding: 0 23px 21px;
}

.final-cta {
  padding: 105px 0;
  background: #edf2f8;
}

.cta-card {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 65px 70px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(96,118,255,.55), transparent 35%),
    radial-gradient(circle at 92% 100%, rgba(28,213,207,.18), transparent 32%),
    linear-gradient(135deg, #07172f, #102b56);
  border-radius: 36px;
  box-shadow: 0 35px 85px rgba(7,23,47,.23);
}

.cta-lines {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -330px;
  left: -150px;
  opacity: .2;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.035);
}

.cta-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -130px;
  bottom: -130px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(55px);
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  font-size: clamp(40px, 4.5vw, 61px);
}

.cta-copy p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.site-footer {
  color: #fff;
  background: #041125;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1.3fr;
  gap: 80px;
  padding-block: 80px 65px;
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 2;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
}

.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 20px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}

.footer-links a {
  margin: 5px 0;
  color: rgba(255,255,255,.44);
  font-size: 11px;
  transition: color .25s, transform .25s;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(-4px);
}

.footer-contact > a,
.address-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 16px;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #a7b2ff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 11px;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
}

.footer-contact a > span:last-child,
.address-row > span:last-child {
  display: grid;
  line-height: 1.5;
}

.footer-contact small {
  color: rgba(255,255,255,.35);
  font-size: 8px;
}

.footer-contact b {
  max-width: 350px;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.8;
}

.footer-contact a b {
  direction: ltr;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.29);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 9px;
}

.made-with span {
  color: var(--cyan);
  text-shadow: 0 0 9px var(--cyan);
}

.floating-call {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
  display: flex;
  height: 55px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  color: #fff;
  background: linear-gradient(135deg, #1fbd91, #118364);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 17px;
  box-shadow: 0 17px 35px rgba(8,94,70,.3);
  font-size: 11px;
  font-weight: 700;
  transition: transform .3s var(--ease);
}

.floating-call:hover {
  transform: translateY(-5px);
}

.floating-call svg {
  width: 20px;
  height: 20px;
}

.call-wave {
  position: absolute;
  inset: -7px;
  pointer-events: none;
  border: 1px solid rgba(31,189,145,.45);
  border-radius: 21px;
  animation: callPing 2s infinite;
}

.toast {
  position: fixed;
  z-index: 5000;
  right: 50%;
  bottom: 25px;
  display: flex;
  min-width: min(420px, calc(100% - 32px));
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(7,23,47,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transform: translate(50%, 30px);
  transition: opacity .35s, transform .35s var(--ease);
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.toast-icon {
  display: grid;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #3c2a00;
  background: #ffd66b;
  border-radius: 11px;
  font-weight: 800;
}

.toast p {
  display: grid;
  flex: 1;
  margin: 0;
  line-height: 1.35;
}

.toast strong {
  font-size: 10px;
}

.toast small {
  margin-top: 4px;
  color: rgba(255,255,255,.47);
  font-size: 8px;
}

.toast button {
  flex: 0 0 auto;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  background: transparent;
  border: 0;
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderFailsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes loaderPulse {
  to { opacity: .55; transform: scale(.98); }
}

@keyframes loaderLine {
  to { transform: translateX(100%); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes ping {
  0% { opacity: .8; transform: scale(.6); }
  80%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes glowBreath {
  50% { opacity: .8; transform: scale(1.1); }
}

@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -13px; }
}

@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes orbitSpin {
  to { transform: rotateX(62deg) rotateZ(345deg); }
}

@keyframes orbitSpinAlt {
  to { transform: rotateX(72deg) rotateZ(388deg); }
}

@keyframes progressIn {
  from { width: 0; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes smallPulse {
  50% { box-shadow: 0 0 0 9px rgba(120,92,241,0); }
}

@keyframes callPing {
  70%, 100% { opacity: 0; transform: scale(1.16); }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 21px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .float-chip.chip-top {
    right: -15px;
  }

  .float-chip.chip-side {
    left: -10px;
  }

  .download-panel {
    grid-template-columns: 135px .9fr 1.1fr;
    padding-inline: 25px;
  }

  .feature-main {
    grid-column: span 8;
  }

  .feature-status,
  .feature-docs {
    grid-column: span 4;
  }

  .feature-status h3,
  .feature-docs h3 {
    font-size: 20px;
  }

  .journey-layout,
  .faq-layout {
    gap: 60px;
  }

  .status-layout {
    gap: 55px;
  }

  .footer-main {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 720px);
  }

  .section-pad {
    padding: 95px 0;
  }

  .main-nav {
    position: fixed;
    top: 96px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    background: rgba(6,21,43,.97);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    backdrop-filter: blur(20px);
    transform: translateY(-15px) scale(.97);
    transition: opacity .3s, transform .3s var(--ease);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 160px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-lead {
    max-width: 610px;
  }

  .trust-row {
    text-align: right;
  }

  .hero-visual {
    min-height: 620px;
    margin-top: 25px;
  }

  .chip-top {
    right: 8% !important;
  }

  .chip-side {
    left: 8% !important;
  }

  .hero-bottom {
    padding-left: 0;
    margin-top: 0;
  }

  .download-strip {
    padding-top: 60px;
  }

  .download-panel {
    grid-template-columns: 140px 1fr;
  }

  .store-buttons {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .store-direct {
    grid-row: auto;
    flex-direction: row;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .feature-main {
    grid-column: span 12;
  }

  .feature-status,
  .feature-docs {
    grid-column: span 6;
  }

  .journey {
    padding-block: 105px;
  }

  .journey-layout,
  .faq-layout,
  .status-layout {
    grid-template-columns: 1fr;
  }

  .journey-copy,
  .faq-heading {
    position: static;
  }

  .journey-copy {
    max-width: 610px;
  }

  .status-interface {
    order: 2;
  }

  .status-copy {
    max-width: 590px;
  }

  .faq-heading {
    max-width: 580px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section-pad {
    padding: 78px 0;
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 9px;
  }

  .header-inner {
    height: 64px;
    padding-right: 10px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 82px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 135px 0 55px;
  }

  .hero::after {
    height: 45px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.8vw, 56px);
    line-height: 1.3;
    letter-spacing: -2.1px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.95;
  }

  .hero-actions {
    width: 100%;
    margin-top: 25px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 555px;
    margin-top: 13px;
    transform: scale(.88);
    transform-origin: top center;
  }

  .phone-wrap {
    width: 268px;
    height: 544px;
  }

  .float-chip {
    min-width: 167px;
  }

  .chip-top {
    top: 75px;
    right: -2% !important;
  }

  .chip-side {
    bottom: 68px;
    left: -4% !important;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: -30px;
    padding-bottom: 35px;
  }

  .hero-note {
    padding: 13px 0;
    border-top-color: rgba(255,255,255,.08);
  }

  .hero-note small {
    font-size: 9px;
  }

  .download-strip {
    margin-top: 0;
    padding: 32px 0 65px;
  }

  .download-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 18px 19px;
    text-align: center;
    border-radius: 27px;
  }

  .download-visual {
    height: 130px;
  }

  .android-logo {
    width: 76px;
    height: 76px;
  }

  .ring-one {
    width: 120px;
    height: 120px;
  }

  .ring-two {
    width: 96px;
    height: 96px;
  }

  .download-copy p {
    margin-inline: auto;
  }

  .store-buttons {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .store-direct {
    flex-direction: row;
  }

  .store-btn {
    justify-content: flex-start;
    text-align: right;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .journey h2,
  .status-copy h2,
  .faq-heading h2,
  .cta-copy h2 {
    font-size: clamp(34px, 10vw, 45px);
    letter-spacing: -1.7px;
  }

  .bento-grid {
    gap: 12px;
  }

  .feature-card,
  .feature-main,
  .feature-status,
  .feature-docs,
  .feature-support {
    min-height: 280px;
    grid-column: span 12;
    padding: 23px;
  }

  .feature-main {
    min-height: 565px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .mini-dashboard {
    width: 103%;
    min-height: 295px;
    margin: 10px -1.5% 0;
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  }

  .feature-status,
  .feature-docs {
    min-height: 260px;
  }

  .feature-support {
    min-height: 390px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-support .text-link {
    justify-content: center;
  }

  .journey {
    padding-block: 80px;
  }

  .journey-layout,
  .faq-layout,
  .status-layout {
    gap: 45px;
  }

  .journey-step {
    min-height: 215px;
    grid-template-columns: 48px 1fr;
    gap: 13px;
    padding: 24px 18px;
  }

  .journey-step > svg {
    display: none;
  }

  .journey-step h3 {
    font-size: 18px;
  }

  .journey-steps::before {
    right: 41px;
  }

  .status-interface {
    min-height: 365px;
    border-radius: 19px;
    transform: none;
  }

  .interface-body {
    min-height: 315px;
    grid-template-columns: 48px 1fr;
  }

  .interface-body aside {
    gap: 16px;
  }

  .interface-body aside span:first-child {
    width: 28px;
    height: 28px;
  }

  .interface-main {
    padding: 19px 13px;
  }

  .interface-card {
    padding: 14px;
  }

  .file-labels span:nth-child(2),
  .file-labels span:nth-child(4) {
    display: none;
  }

  .interface-squares span {
    height: 55px;
  }

  .faq-item button {
    min-height: 69px;
    padding-inline: 17px;
    font-size: 12px;
  }

  .faq-item.active .faq-answer p {
    padding: 0 17px 18px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .cta-card {
    min-height: 485px;
    padding: 43px 24px;
    border-radius: 27px;
  }

  .cta-actions {
    display: grid;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 60px 45px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 18px 0;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
  }

  .floating-call {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    padding: 0;
    border-radius: 16px;
  }

  .call-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}
