:root {
  --bg: #07101f;
  --bg-soft: #0d1728;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f8fb;
  --muted: #aebbd0;
  --muted-strong: #d8e0ec;
  --accent: #67e8c9;
  --accent-2: #6dd5ff;
  --gold: #ffd166;
  --danger: #ff8fab;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(103, 232, 201, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(109, 213, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #07101f 0%, #0b1220 45%, #081626 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(7, 16, 31, 0.9) 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 10;
  overflow: hidden;
  isolation: isolate;
}

#root,
#app {
  position: relative;
  z-index: 10;
  min-height: 1px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 31, 0.76);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(103, 232, 201, 0.95), rgba(109, 213, 255, 0.86)),
    #102037;
  color: #06101c;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(103, 232, 201, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.language-select select {
  min-width: 124px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px 34px 10px 14px;
  outline: none;
}

.language-select select option {
  color: #08111f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-small {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06101c;
  box-shadow: 0 18px 42px rgba(103, 232, 201, 0.26);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.play-icon {
  position: relative;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.hero {
  position: relative;
  padding: 104px 0 90px;
}

.hero-grid,
.split-section,
.dashboard-grid,
.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  box-shadow: 0 0 24px currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-subtitle,
.section-text,
.section-heading p,
.cta-card p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  padding: 9px 14px;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.orb-one {
  top: 50px;
  right: 30px;
  width: 180px;
  height: 180px;
  background: rgba(103, 232, 201, 0.17);
}

.orb-two {
  bottom: 90px;
  left: 0;
  width: 230px;
  height: 230px;
  background: rgba(183, 156, 255, 0.13);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  min-height: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    #0b1628;
  padding: 24px;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.04),
    var(--shadow);
}

.hero-phone {
  transform: rotate(3deg);
}

.phone-status {
  width: 92px;
  height: 7px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.app-card,
.dashboard-card,
.glass-card,
.feature-card,
.security-panel,
.mockup-card,
.cta-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.app-card-main {
  border-radius: 28px;
  padding: 22px;
}

.app-card-main span,
.app-card-main small {
  display: block;
  color: var(--muted);
}

.app-card-main strong {
  display: block;
  margin: 8px 0;
  font-size: 2.6rem;
  letter-spacing: -0.06em;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 124px;
  margin: 24px 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.mini-bars span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.app-list,
.allocation-list,
.screen-lines {
  display: grid;
  gap: 12px;
}

.app-list div,
.allocation-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.app-list span,
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--dot);
}

.app-list p,
.allocation-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.solution-cards {
  display: grid;
  gap: 18px;
}

.solution-card,
.feature-card {
  border-radius: var(--radius-md);
  padding: 26px;
}

.solution-card p,
.feature-card p,
.security-item p,
.security-note {
  color: var(--muted);
  line-height: 1.68;
}

.step-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(103, 232, 201, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.icon-wrap {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(103, 232, 201, 0.12);
  color: var(--accent);
}

.icon-wrap svg,
.security-item svg {
  width: 24px;
  height: 24px;
}

.dashboard-section {
  position: relative;
}

.dashboard-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.income-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  border: 1px solid rgba(103, 232, 201, 0.24);
  border-radius: 999px;
  background: rgba(103, 232, 201, 0.08);
  padding: 13px 18px;
}

.income-pill span {
  color: var(--muted);
}

.income-pill strong {
  color: var(--accent);
}

.donut-wrap {
  display: grid;
  place-items: center;
}

.donut {
  display: grid;
  width: 230px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--segments));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 26px rgba(255, 255, 255, 0.08);
}

.donut::before {
  position: absolute;
  width: 142px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0c1728;
  content: "";
}

.donut-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut-center span {
  display: block;
  max-width: 110px;
  color: var(--muted);
  font-size: 0.8rem;
}

.donut-center strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
}

.security-section {
  position: relative;
}

.security-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-radius: var(--radius-lg);
  padding: 22px;
}

.security-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.security-item span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 15px;
  background: rgba(103, 232, 201, 0.11);
  color: var(--accent);
}

.security-item p {
  margin: 0;
  color: var(--muted-strong);
  font-weight: 700;
}

.security-note {
  margin-top: 24px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-size: 0.96rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.mockup-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 18px 18px 22px;
  text-align: center;
}

.mockup-card h3 {
  margin: 18px 0 0;
}

.mini-phone {
  width: 100%;
  min-height: 360px;
  border-radius: 34px;
  padding: 18px;
  box-shadow: none;
}

.screen-title {
  margin-bottom: 18px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.screen-graph {
  height: 126px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(103, 232, 201, 0.42), rgba(109, 213, 255, 0.18));
}

.screen-graph-2 {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.38), rgba(109, 213, 255, 0.14)),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(255, 255, 255, 0.12) 17px 18px);
}

.screen-graph-3 {
  background:
    radial-gradient(circle, rgba(103, 232, 201, 0.3) 0 34%, transparent 35%),
    conic-gradient(from 90deg, #67e8c9, #6dd5ff, #b79cff, #ffd166, #67e8c9);
}

.screen-graph-4 {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, rgba(183, 156, 255, 0.36), rgba(103, 232, 201, 0.12));
}

.screen-graph-5 {
  background:
    linear-gradient(135deg, rgba(255, 143, 171, 0.28), rgba(103, 232, 201, 0.16)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 35%);
}

.screen-lines {
  margin-top: 18px;
}

.screen-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.screen-lines span:nth-child(2) {
  width: 72%;
}

.screen-lines span:nth-child(3) {
  width: 88%;
}

.final-cta {
  padding-top: 70px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 940px;
  border-radius: 36px;
  padding: 64px;
  text-align: center;
}

.cta-card::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(103, 232, 201, 0.18);
  content: "";
}

.cta-card p {
  position: relative;
  max-width: 680px;
  margin: 0 auto 28px;
}

.cta-card h2,
.cta-card .btn,
.cta-card .eyebrow {
  position: relative;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand small {
  max-width: 420px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

[dir="rtl"] body {
  font-family:
    "Segoe UI", Tahoma, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

[dir="rtl"] .security-note {
  border-right: 3px solid var(--accent);
  border-left: 0;
  padding-right: 18px;
  padding-left: 0;
}

[dir="rtl"] .hero-phone {
  transform: rotate(-3deg);
}

[dir="rtl"] .play-icon {
  transform: scaleX(-1);
}

@media (max-width: 1060px) {
  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .split-section,
  .dashboard-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 70px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-actions .btn {
    flex: 1;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .phone {
    min-height: 540px;
  }

  .dashboard-card {
    grid-template-columns: 1fr;
  }

  .security-panel,
  .feature-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .mini-phone {
    max-width: 240px;
    margin: 0 auto;
  }

  .cta-card {
    padding: 44px 22px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Light 3D cartoon theme requested for the final landing interface. */
:root {
  --bg: #f7f9ff;
  --bg-soft: #eef4ff;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(96, 108, 140, 0.14);
  --text: #101629;
  --muted: #64708a;
  --muted-strong: #2a3348;
  --accent: #4f46e5;
  --accent-2: #7c3aed;
  --mint: #69e1cc;
  --sun: #f7b72c;
  --rose: #ff6f91;
  --shadow: 0 22px 60px rgba(61, 73, 122, 0.14);
  color-scheme: light;
  font-family:
    "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-12px) rotate(calc(var(--rotate, 0deg) + 1deg));
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.03);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.55;
  }
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 70, 229, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(105, 225, 204, 0.18), transparent 25rem),
    linear-gradient(160deg, #fbfcff 0%, #eef3ff 32%, #f2fff9 64%, #fbf7ff 100%);
  color: var(--text);
}

body::before {
  background-image:
    radial-gradient(circle, rgba(79, 70, 229, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(105, 225, 204, 0.14) 1px, transparent 1px);
  background-position:
    0 0,
    28px 28px;
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.78) 86%);
}

.site-header {
  border-bottom: 1px solid rgba(96, 108, 140, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(61, 73, 122, 0.06);
}

.brand-mark {
  border: 0;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(79, 70, 229, 0.24);
}

.nav-links a,
.brand small,
.hero-subtitle,
.section-text,
.section-heading p,
.cta-card p,
.solution-card p,
.feature-card p,
.security-item p,
.security-note,
.app-list p,
.allocation-list p {
  color: var(--muted);
}

.language-select select,
.btn-secondary,
.trust-row span {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(61, 73, 122, 0.08);
}

.btn-primary,
.btn-small {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.24);
}

.btn-primary:hover,
.btn-small:hover {
  box-shadow: 0 24px 48px rgba(79, 70, 229, 0.28);
}

.hero {
  min-height: calc(100vh - 82px);
  background:
    linear-gradient(160deg, rgba(248, 250, 255, 0.92), rgba(238, 242, 255, 0.72)),
    radial-gradient(circle at 70% 32%, rgba(247, 183, 44, 0.16), transparent 18rem);
}

.soft-orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(42px);
  animation: glowPulse 4s ease-in-out infinite;
}

.soft-orb-one {
  top: 80px;
  right: 16%;
  width: 330px;
  height: 330px;
  background: rgba(79, 70, 229, 0.18);
}

.soft-orb-two {
  bottom: 70px;
  left: 12%;
  width: 300px;
  height: 300px;
  background: rgba(105, 225, 204, 0.22);
  animation-delay: 1.3s;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

h1,
h2 {
  color: #101629;
}

.eyebrow {
  color: var(--accent);
}

.hero-visual {
  min-height: 650px;
}

.float-1 {
  --rotate: 3deg;
  animation: float 4.8s ease-in-out infinite;
}

.float-2 {
  --rotate: -2deg;
  animation: float 5.6s ease-in-out infinite 0.5s;
}

.phone {
  border: 10px solid #111827;
  background: #111827;
  box-shadow:
    0 30px 70px rgba(17, 24, 39, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.real-app-phone {
  overflow: hidden;
  width: min(305px, 88vw);
  min-height: auto;
  padding: 0;
  border-radius: 44px;
}

.real-app-phone img,
.real-screenshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
  top: 32px;
  right: 48px;
  z-index: 4;
  transform-origin: center;
}

.phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 88px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #111827;
  transform: translateX(-50%);
}

.cartoon-character {
  position: absolute;
  z-index: 3;
  width: 230px;
  height: 300px;
  filter: drop-shadow(0 24px 34px rgba(61, 73, 122, 0.18));
}

.hero-visual .cartoon-character {
  left: 10px;
  bottom: 52px;
}

.character-head {
  position: absolute;
  top: 18px;
  left: 56px;
  width: 112px;
  height: 118px;
  border-radius: 48% 52% 48% 52%;
  background:
    radial-gradient(circle at 32% 38%, #ffd5b2 0 9px, transparent 10px),
    linear-gradient(145deg, #ffbe86, #f48a5c);
  box-shadow: inset -10px -12px 18px rgba(156, 64, 42, 0.13);
}

.hair {
  position: absolute;
  top: -8px;
  left: 16px;
  width: 86px;
  height: 54px;
  border-radius: 48px 48px 26px 20px;
  background: linear-gradient(145deg, #8b2d25, #5f201d);
}

.hair::after {
  position: absolute;
  top: 20px;
  right: -8px;
  width: 26px;
  height: 80px;
  border-radius: 20px;
  background: #6d231f;
  content: "";
}

.glasses,
.glasses::before,
.glasses::after {
  position: absolute;
  border: 4px solid #191827;
  content: "";
}

.glasses {
  top: 50px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.glasses::before {
  top: -4px;
  left: 38px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.glasses::after {
  top: 10px;
  left: 26px;
  width: 15px;
  height: 3px;
  border: 0;
  background: #191827;
}

.smile {
  position: absolute;
  left: 45px;
  bottom: 28px;
  width: 31px;
  height: 12px;
  border-bottom: 4px solid #ffffff;
  border-radius: 0 0 24px 24px;
}

.character-body {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 150px;
  height: 182px;
  border-radius: 46px 46px 34px 34px;
  background: linear-gradient(145deg, #ff7a67, #f0526d);
  box-shadow: inset -16px -18px 24px rgba(141, 31, 76, 0.12);
}

.character-arm {
  position: absolute;
  top: 124px;
  left: 8px;
  width: 54px;
  height: 118px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ff896e, #ef4c63);
  transform: rotate(28deg);
}

.floating-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(61, 73, 122, 0.13);
  backdrop-filter: blur(16px);
  padding: 14px 16px;
  animation: floatSoft 5s ease-in-out infinite;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-card-one {
  top: 110px;
  left: 0;
}

.floating-card-two {
  right: -10px;
  bottom: 128px;
  animation-delay: 0.9s;
}

.floating-coin {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, #ffe98f, transparent 22px),
    linear-gradient(145deg, #ffd967, #f4a51c);
  box-shadow: inset -8px -10px 12px rgba(168, 109, 0, 0.16), 0 16px 24px rgba(247, 183, 44, 0.2);
  animation: floatSoft 4.5s ease-in-out infinite;
}

.coin-one {
  top: 32px;
  left: 120px;
}

.coin-two {
  right: 54px;
  bottom: 54px;
  animation-delay: 1s;
}

.app-card,
.dashboard-card,
.glass-card,
.feature-card,
.security-panel,
.mockup-card,
.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.feature-card,
.solution-card,
.mockup-card,
.dashboard-card,
.security-panel {
  box-shadow: 0 18px 48px rgba(61, 73, 122, 0.1);
}

.feature-card:hover {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(79, 70, 229, 0.14);
}

.icon-wrap {
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.12), rgba(105, 225, 204, 0.16));
  color: var(--accent);
}

.solution-visual {
  display: grid;
  gap: 20px;
}

.cartoon-scene {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(242, 247, 255, 0.74)),
    radial-gradient(circle at 60% 35%, rgba(79, 70, 229, 0.13), transparent 10rem);
  box-shadow: 0 22px 54px rgba(61, 73, 122, 0.12);
}

.cartoon-scene strong {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 4;
  color: var(--muted-strong);
}

.scene-blob {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 190px;
  height: 138px;
  border-radius: 58% 42% 48% 52%;
  background: linear-gradient(145deg, #ffe681, #ffbf34);
  filter: drop-shadow(0 18px 22px rgba(247, 183, 44, 0.18));
}

.scene-shadow {
  position: absolute;
  right: 64px;
  bottom: 18px;
  width: 150px;
  height: 18px;
  border-radius: 50%;
  background: rgba(61, 73, 122, 0.12);
  filter: blur(6px);
}

.scene-object {
  position: absolute;
  z-index: 2;
  border-radius: 22px;
  box-shadow: inset -9px -11px 14px rgba(28, 39, 78, 0.12), 0 18px 28px rgba(61, 73, 122, 0.13);
  animation: floatSoft 5s ease-in-out infinite;
}

.scene-object-primary {
  top: 40px;
  left: 44px;
  width: 180px;
  height: 116px;
  background: linear-gradient(145deg, #7c6cff, #5146e7);
}

.scene-object-secondary {
  top: 88px;
  left: 112px;
  width: 128px;
  height: 82px;
  background: linear-gradient(145deg, #69e1cc, #47c6be);
  animation-delay: 0.5s;
}

.scene-object-tertiary {
  right: 70px;
  top: 42px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffdf75, #f5ad24);
  animation-delay: 1s;
}

.cartoon-map .scene-object-primary {
  width: 220px;
  height: 104px;
  border-radius: 52% 48% 45% 55%;
}

.cartoon-map .scene-object-primary::before,
.cartoon-map .scene-object-primary::after {
  position: absolute;
  width: 28px;
  height: 38px;
  border-radius: 18px 18px 18px 4px;
  background: linear-gradient(145deg, #ff7a76, #f24b67);
  content: "";
  transform: rotate(45deg);
}

.cartoon-map .scene-object-primary::before {
  top: 24px;
  left: 42px;
}

.cartoon-map .scene-object-primary::after {
  right: 50px;
  bottom: 20px;
}

.cartoon-analytics .scene-object-primary {
  top: 58px;
  width: 240px;
  height: 142px;
  background:
    linear-gradient(135deg, transparent 46%, #ff6f91 47% 54%, transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.3) 29px 45px),
    linear-gradient(145deg, #ffffff, #edf1ff);
}

.cartoon-security .scene-object-primary {
  left: 82px;
  width: 132px;
  height: 154px;
  border-radius: 48% 48% 40% 40%;
  background: linear-gradient(145deg, #7c6cff, #5146e7);
}

.cartoon-security .scene-object-primary::after {
  position: absolute;
  top: 38px;
  left: 39px;
  width: 54px;
  height: 54px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  content: "";
}

.sparkle {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  background: #f7b72c;
  clip-path: polygon(50% 0, 63% 36%, 100% 50%, 63% 64%, 50% 100%, 37% 64%, 0 50%, 37% 36%);
  animation: floatSoft 4s ease-in-out infinite;
}

.sparkle-one {
  top: 34px;
  right: 34px;
}

.sparkle-two {
  left: 24px;
  bottom: 74px;
  animation-delay: 1.1s;
}

.dashboard-section,
.security-section,
.final-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(248, 250, 255, 0.86));
}

.donut {
  background: conic-gradient(var(--segments));
  box-shadow: 0 22px 46px rgba(61, 73, 122, 0.16);
}

.donut::before {
  background: #ffffff;
}

.security-grid {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr) minmax(340px, 0.9fr);
}

.security-visual .cartoon-scene {
  min-height: 390px;
}

.security-panel {
  grid-column: 3;
}

.security-note {
  border-color: var(--accent);
}

.security-item {
  border-color: rgba(96, 108, 140, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.security-item p {
  color: var(--muted-strong);
}

.screenshots-grid {
  align-items: stretch;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.78);
}

.mini-phone {
  border-width: 8px;
  background: #111827;
}

.mini-phone.real-screenshot {
  overflow: hidden;
  padding: 0;
}

.screen-graph {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(79, 70, 229, 0.48), rgba(105, 225, 204, 0.4));
}

.screen-title {
  color: #f8fafc;
}

.screen-lines span {
  background: rgba(255, 255, 255, 0.22);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
  background:
    radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.14), transparent 19rem),
    rgba(255, 255, 255, 0.82);
  text-align: left;
}

.cta-card::before {
  background: rgba(105, 225, 204, 0.24);
}

.cta-card > .eyebrow,
.cta-card > h2,
.cta-card > p,
.cta-card > .btn {
  grid-column: 2;
}

.cta-visual {
  position: relative;
  grid-row: 1 / span 4;
  min-height: 410px;
}

.cta-phone {
  position: absolute;
  left: 72px;
  top: 12px;
  width: 190px;
}

.cta-character {
  left: 0;
  bottom: 10px;
  transform: scale(0.8);
}

.site-footer {
  border-top: 1px solid rgba(96, 108, 140, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

[dir="rtl"] .hero-phone {
  right: auto;
  left: 48px;
}

[dir="rtl"] .hero-visual .cartoon-character {
  right: 10px;
  left: auto;
}

[dir="rtl"] .floating-card-one {
  right: 0;
  left: auto;
}

[dir="rtl"] .floating-card-two {
  right: auto;
  left: -10px;
}

[dir="rtl"] .cartoon-scene strong {
  right: 24px;
  left: auto;
}

[dir="rtl"] .cta-card {
  text-align: right;
}

@media (max-width: 1060px) {
  .hero-phone {
    position: relative;
    top: auto;
    right: auto;
  }

  .hero-visual {
    display: grid;
    min-height: 620px;
    place-items: center;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-panel {
    grid-column: auto;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-card > .eyebrow,
  .cta-card > h2,
  .cta-card > p,
  .cta-card > .btn,
  .cta-visual {
    grid-column: 1;
  }

  .cta-visual {
    grid-row: auto;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero-visual {
    min-height: 570px;
  }

  .hero-visual .cartoon-character {
    left: -18px;
    bottom: 20px;
    transform: scale(0.78);
  }

  .real-app-phone {
    width: min(285px, 82vw);
  }

  .floating-card {
    display: none;
  }

  .cartoon-scene {
    min-height: 220px;
  }

  .scene-object-primary {
    left: 24px;
    width: 165px;
  }

  .dashboard-card {
    text-align: initial;
  }

  .cta-visual {
    min-height: 370px;
  }

  .cta-phone {
    left: 50%;
    width: 172px;
    transform: translateX(-20%);
  }

  .cta-character {
    left: 50%;
    transform: translateX(-78%) scale(0.68);
  }
}

/* Premium illustration refinement: keeps layout intact while improving character quality and balance. */
.hero-visual {
  isolation: isolate;
}

.hero-phone {
  right: 24px;
  z-index: 6;
  width: min(318px, 86vw);
  box-shadow:
    0 34px 80px rgba(17, 24, 39, 0.2),
    0 12px 28px rgba(79, 70, 229, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.cartoon-character {
  width: 176px;
  height: 258px;
  z-index: 3;
  filter:
    drop-shadow(0 22px 28px rgba(61, 73, 122, 0.16))
    drop-shadow(0 8px 14px rgba(79, 70, 229, 0.08));
}

.hero-visual .cartoon-character {
  left: 34px;
  bottom: 88px;
  opacity: 0.96;
}

.character-head {
  top: 20px;
  left: 48px;
  width: 82px;
  height: 92px;
  border-radius: 46% 54% 48% 52%;
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 238, 222, 0.86) 0 7px, transparent 8px),
    radial-gradient(circle at 68% 42%, rgba(255, 238, 222, 0.7) 0 5px, transparent 6px),
    linear-gradient(145deg, #ffc99e 0%, #ef9368 78%);
  box-shadow:
    inset -8px -12px 16px rgba(142, 62, 42, 0.12),
    inset 8px 8px 14px rgba(255, 255, 255, 0.18);
}

.hair {
  top: -10px;
  left: 10px;
  width: 68px;
  height: 46px;
  border-radius: 40px 38px 24px 14px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.14), transparent 22px),
    linear-gradient(145deg, #6330a2, #2f236f 74%);
}

.hair::after {
  top: 18px;
  right: -4px;
  width: 18px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(180deg, #3a267f, #251d55);
}

.glasses,
.glasses::before,
.glasses::after {
  border-width: 2px;
  border-color: rgba(18, 24, 43, 0.86);
}

.glasses {
  top: 39px;
  left: 18px;
  width: 21px;
  height: 21px;
}

.glasses::before {
  top: -2px;
  left: 29px;
  width: 21px;
  height: 21px;
}

.glasses::after {
  top: 9px;
  left: 20px;
  width: 11px;
  height: 2px;
  background: rgba(18, 24, 43, 0.86);
}

.smile {
  left: 34px;
  bottom: 23px;
  width: 23px;
  height: 8px;
  border-bottom-width: 3px;
  opacity: 0.92;
}

.character-body {
  left: 35px;
  bottom: 0;
  width: 108px;
  height: 156px;
  border-radius: 34px 34px 28px 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #5c6cff, #4f46e5 52%, #7c3aed);
  box-shadow:
    inset -14px -18px 24px rgba(36, 28, 102, 0.14),
    inset 8px 10px 18px rgba(255, 255, 255, 0.16);
}

.character-body::before {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 72px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  content: "";
}

.character-arm {
  top: 126px;
  left: 8px;
  width: 34px;
  height: 104px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(145deg, #6677ff, #4f46e5);
  transform: rotate(18deg);
  transform-origin: top center;
}

.character-arm::after {
  position: absolute;
  bottom: -9px;
  left: 1px;
  width: 32px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc99e, #ef9368);
  content: "";
}

.floating-card {
  min-width: 142px;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.72)),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    0 22px 42px rgba(61, 73, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.floating-card::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--accent));
  content: "";
  vertical-align: middle;
}

.floating-card-one {
  top: 96px;
  left: 6px;
  z-index: 7;
}

.floating-card-two {
  right: -4px;
  bottom: 118px;
  z-index: 7;
}

.floating-coin {
  z-index: 1;
  width: 42px;
  height: 42px;
  opacity: 0.9;
}

.coin-one {
  top: 42px;
  left: 155px;
}

.coin-two {
  right: 36px;
  bottom: 44px;
}

.cartoon-scene {
  min-height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 28%, rgba(105, 225, 204, 0.22), transparent 9rem),
    radial-gradient(circle at 18% 72%, rgba(79, 70, 229, 0.12), transparent 10rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 255, 0.76));
  box-shadow:
    0 24px 58px rgba(61, 73, 122, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.cartoon-scene::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  pointer-events: none;
  content: "";
}

.scene-blob {
  right: 36px;
  bottom: 34px;
  width: 168px;
  height: 116px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.35), transparent 34px),
    linear-gradient(145deg, #ffe18b, #f7b72c);
  opacity: 0.92;
}

.scene-object {
  box-shadow:
    inset -10px -12px 18px rgba(28, 39, 78, 0.1),
    inset 8px 8px 16px rgba(255, 255, 255, 0.26),
    0 18px 34px rgba(61, 73, 122, 0.12);
}

.scene-object-primary {
  top: 46px;
  left: 40px;
  width: 176px;
  height: 112px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.32), transparent 34px),
    linear-gradient(145deg, #7d8cff, #4f46e5);
}

.scene-object-secondary {
  top: 110px;
  left: 116px;
  width: 114px;
  height: 72px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.3), transparent 26px),
    linear-gradient(145deg, #76ead6, #32bdb2);
}

.scene-object-tertiary {
  right: 78px;
  top: 48px;
  width: 48px;
  height: 48px;
}

.scene-person {
  position: absolute;
  right: 46px;
  bottom: 44px;
  z-index: 4;
  width: 86px;
  height: 142px;
  filter: drop-shadow(0 14px 18px rgba(61, 73, 122, 0.12));
}

.scene-person-head,
.scene-person-body,
.scene-person-arm {
  position: absolute;
  display: block;
}

.scene-person-head {
  top: 0;
  left: 24px;
  width: 42px;
  height: 48px;
  border-radius: 46% 54% 48% 52%;
  background:
    radial-gradient(circle at 32% 34%, rgba(255, 244, 232, 0.85) 0 4px, transparent 5px),
    linear-gradient(145deg, #ffc79a, #ed9168);
  box-shadow: inset -5px -7px 10px rgba(142, 62, 42, 0.12);
}

.scene-person-head::before {
  position: absolute;
  top: -5px;
  left: 7px;
  width: 35px;
  height: 20px;
  border-radius: 20px 20px 12px 8px;
  background: linear-gradient(145deg, #3a267f, #211949);
  content: "";
}

.scene-person-body {
  left: 14px;
  bottom: 0;
  width: 62px;
  height: 98px;
  border-radius: 22px 22px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #5f6fff, #4f46e5);
}

.scene-person-arm {
  left: 3px;
  top: 58px;
  width: 22px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #5f6fff, #4f46e5);
  transform: rotate(24deg);
}

.scene-chips {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 54px;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.scene-chips span {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 22px rgba(61, 73, 122, 0.08);
  color: var(--muted-strong);
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.cartoon-scene strong {
  z-index: 7;
  max-width: 58%;
}

.cartoon-map .scene-object-primary {
  width: 190px;
  height: 92px;
  border-radius: 42% 58% 47% 53%;
  opacity: 0.95;
}

.cartoon-map .scene-person {
  right: 58px;
  transform: scale(0.92);
  transform-origin: bottom right;
}

.cartoon-map .scene-chips {
  bottom: 24px;
  max-width: 250px;
}

.cartoon-analytics {
  margin-top: 28px;
}

.cartoon-analytics .scene-object-primary {
  top: 48px;
  left: 34px;
  width: 230px;
  height: 132px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(255, 111, 145, 0.9) 46% 52%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(79, 70, 229, 0.18) 27px 41px),
    linear-gradient(145deg, #ffffff, #eef2ff);
}

.cartoon-analytics .scene-object-primary::before {
  position: absolute;
  left: 24px;
  bottom: 20px;
  width: 22px;
  height: 52px;
  border-radius: 9px 9px 5px 5px;
  background: #7c6cff;
  box-shadow:
    38px -20px 0 #69e1cc,
    76px -4px 0 #f7b72c,
    114px -34px 0 #ff6f91;
  content: "";
}

.cartoon-analytics .scene-person {
  right: 26px;
  bottom: 34px;
  transform: scale(0.86);
  transform-origin: bottom right;
}

.cartoon-analytics .scene-chips {
  bottom: 22px;
  max-width: 260px;
}

.cartoon-security {
  min-height: 360px;
}

.cartoon-security .scene-blob {
  right: 50%;
  bottom: 54px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.52) 0 42%, rgba(105, 225, 204, 0.24) 43% 62%, rgba(79, 70, 229, 0.13) 63%),
    linear-gradient(145deg, rgba(105, 225, 204, 0.22), rgba(79, 70, 229, 0.12));
  transform: translateX(50%);
  filter: blur(0) drop-shadow(0 18px 34px rgba(79, 70, 229, 0.12));
}

.cartoon-security .scene-object-primary {
  top: 58px;
  left: 50%;
  width: 190px;
  height: 210px;
  border-radius: 44% 56% 52% 48%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.62) 0 36%, rgba(105, 225, 204, 0.22) 37% 58%, rgba(79, 70, 229, 0.12) 59% 100%);
  box-shadow:
    0 0 0 16px rgba(105, 225, 204, 0.08),
    0 0 54px rgba(79, 70, 229, 0.16),
    inset 0 0 38px rgba(255, 255, 255, 0.44);
  transform: translateX(-50%);
}

.cartoon-security .scene-object-primary::after {
  display: none;
}

.cartoon-security .scene-object-secondary {
  left: 50%;
  top: 128px;
  width: 112px;
  height: 132px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #5f6fff, #4f46e5);
  transform: translateX(-50%);
}

.cartoon-security .scene-object-tertiary {
  right: 46px;
  top: 52px;
  width: 86px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.76));
}

.cartoon-security .scene-person {
  right: 50%;
  bottom: 54px;
  transform: translateX(50%) scale(1.02);
  transform-origin: bottom center;
}

.cartoon-security .scene-chips {
  right: 24px;
  left: 24px;
  bottom: 24px;
  justify-content: center;
}

.cartoon-security strong {
  left: 50%;
  bottom: auto;
  top: 24px;
  max-width: 80%;
  transform: translateX(-50%);
  text-align: center;
}

.sparkle {
  opacity: 0.72;
  filter: drop-shadow(0 8px 10px rgba(247, 183, 44, 0.18));
}

.security-visual .cartoon-scene {
  min-height: 390px;
}

.cta-visual {
  isolation: isolate;
}

.cta-phone {
  left: 82px;
  top: 0;
  z-index: 5;
  width: 205px;
}

.cta-character {
  left: -4px;
  bottom: 6px;
  z-index: 3;
  transform: scale(0.66);
  transform-origin: bottom left;
  opacity: 0.94;
}

.cta-character::before {
  position: absolute;
  right: -88px;
  bottom: 18px;
  z-index: -1;
  width: 170px;
  height: 112px;
  border-radius: 54% 46% 48% 52%;
  background: linear-gradient(145deg, rgba(247, 183, 44, 0.52), rgba(255, 230, 129, 0.7));
  content: "";
  filter: blur(0.2px);
}

[dir="rtl"] .hero-phone {
  right: auto;
  left: 24px;
}

[dir="rtl"] .hero-visual .cartoon-character {
  right: 34px;
  left: auto;
}

[dir="rtl"] .scene-person {
  right: auto;
  left: 46px;
}

[dir="rtl"] .cartoon-security .scene-person {
  right: 50%;
  left: auto;
}

[dir="rtl"] .scene-chips {
  direction: rtl;
}

@media (max-width: 1060px) {
  .hero-phone {
    right: auto;
    width: min(300px, 82vw);
  }

  .hero-visual .cartoon-character {
    left: calc(50% - 220px);
    bottom: 70px;
    transform: scale(0.88);
  }

  .cta-phone {
    left: 50%;
    transform: translateX(-18%);
  }

  .cta-character {
    left: 50%;
    transform: translateX(-105%) scale(0.62);
  }
}

@media (max-width: 720px) {
  .hero-visual {
    min-height: 545px;
  }

  .hero-visual .cartoon-character {
    left: calc(50% - 188px);
    bottom: 44px;
    transform: scale(0.66);
  }

  .hero-phone {
    width: min(265px, 78vw);
  }

  .scene-person {
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .scene-chips {
    bottom: 22px;
  }

  .scene-chips span {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .cartoon-analytics .scene-object-primary {
    width: 190px;
  }

  .cartoon-security .scene-object-primary {
    width: 156px;
    height: 182px;
  }

  .cta-phone {
    width: 176px;
    transform: translateX(-12%);
  }

  .cta-character {
    transform: translateX(-108%) scale(0.54);
  }
}

/* Fintech robot refresh inspired by the requested reference image. */
@keyframes robotHover {
  0%,
  100% {
    transform: translate3d(var(--robot-shift-x), 0, 0) rotate(-2deg) scale(var(--robot-scale));
  }
  50% {
    transform: translate3d(var(--robot-shift-x), -18px, 0) rotate(2deg) scale(var(--robot-scale));
  }
}

@keyframes robotArmLeft {
  0%,
  100% {
    transform: rotate(28deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-8px);
  }
}

@keyframes robotArmRight {
  0%,
  100% {
    transform: rotate(-28deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(-8px);
  }
}

@keyframes robotBlink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }
  92%,
  95% {
    transform: scaleY(0.12);
  }
}

@keyframes chipPulse {
  0%,
  100% {
    box-shadow:
      0 18px 34px rgba(40, 74, 132, 0.2),
      0 0 0 0 rgba(105, 225, 204, 0.22);
  }
  50% {
    box-shadow:
      0 26px 46px rgba(40, 74, 132, 0.24),
      0 0 0 12px rgba(105, 225, 204, 0);
  }
}

@keyframes dataOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, -14px, 0) scale(1.06);
  }
}

.fintech-robot,
.fintech-robot * {
  box-sizing: border-box;
}

.fintech-robot {
  --robot-scale: 1;
  --robot-shift-x: 0px;
  width: 245px;
  height: 350px;
  z-index: 8;
  animation: robotHover 4.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  filter:
    drop-shadow(0 28px 34px rgba(40, 74, 132, 0.22))
    drop-shadow(0 8px 16px rgba(79, 70, 229, 0.13));
  transform-origin: 50% 58%;
}

.hero-visual .fintech-robot {
  left: 0;
  bottom: 58px;
  opacity: 1;
}

.robot-antenna {
  position: absolute;
  top: 0;
  left: 108px;
  z-index: 8;
  width: 30px;
  height: 44px;
}

.robot-antenna::before {
  position: absolute;
  left: 13px;
  bottom: 0;
  width: 5px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7e7ff, #6682b5);
  content: "";
}

.robot-antenna span {
  position: absolute;
  top: 0;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.95) 0 5px, transparent 6px),
    linear-gradient(145deg, #eef6ff, #9aaccc 66%, #647da8);
  box-shadow: inset -4px -6px 9px rgba(39, 57, 95, 0.22);
}

.fintech-robot .robot-head {
  top: 38px;
  left: 28px;
  z-index: 7;
  width: 190px;
  height: 142px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.48), transparent 34px),
    linear-gradient(145deg, #89a9e8 0%, #526fae 52%, #385187 100%);
  box-shadow:
    inset 10px 12px 20px rgba(255, 255, 255, 0.24),
    inset -18px -22px 28px rgba(24, 42, 82, 0.28),
    0 20px 34px rgba(48, 72, 122, 0.2);
}

.robot-face {
  position: absolute;
  inset: 26px 20px 25px;
  display: block;
  border-radius: 34px;
  background:
    radial-gradient(circle at 45% 110%, rgba(105, 225, 204, 0.14), transparent 52%),
    linear-gradient(145deg, #101724, #1b2941 70%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -14px 22px rgba(58, 93, 157, 0.18);
}

.robot-eye {
  position: absolute;
  top: 34px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f8fbff;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.78),
    0 0 30px rgba(105, 225, 204, 0.35);
  animation: robotBlink 5.4s ease-in-out infinite;
}

.robot-eye-left {
  left: 34px;
}

.robot-eye-right {
  right: 34px;
  animation-delay: 0.08s;
}

.robot-smile {
  left: 49px;
  bottom: 23px;
  width: 56px;
  height: 22px;
  border: 0;
  border-bottom: 5px solid #f8fbff;
  border-radius: 0 0 999px 999px;
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.48));
}

.fintech-robot .robot-body {
  left: 73px;
  bottom: 82px;
  z-index: 5;
  width: 98px;
  height: 118px;
  border-radius: 36px 36px 28px 28px;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.36), transparent 28px),
    linear-gradient(145deg, #86a8e7, #5474b7 54%, #3d5b97);
  box-shadow:
    inset 10px 12px 18px rgba(255, 255, 255, 0.2),
    inset -16px -20px 24px rgba(23, 42, 82, 0.24),
    0 24px 34px rgba(48, 72, 122, 0.18);
}

.fintech-robot .robot-body::before {
  display: none;
}

.robot-body span {
  position: absolute;
  left: 50%;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 1.28rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.robot-arm {
  position: absolute;
  z-index: 4;
  top: 150px;
  width: 44px;
  height: 98px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(18, 32, 59, 0.22) 43% 56%, transparent 57%),
    linear-gradient(145deg, #b8c9e9, #677fae 68%);
  box-shadow:
    inset 8px 7px 14px rgba(255, 255, 255, 0.24),
    inset -8px -10px 14px rgba(25, 43, 78, 0.2);
  transform-origin: top center;
}

.robot-arm span {
  position: absolute;
  bottom: -20px;
  left: -8px;
  width: 62px;
  height: 58px;
  border: 11px solid #6179aa;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(28deg);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.16),
    0 12px 18px rgba(48, 72, 122, 0.18);
}

.robot-arm-left {
  left: 21px;
  animation: robotArmLeft 3.3s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.robot-arm-right {
  right: 21px;
  animation: robotArmRight 3.3s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  animation-delay: 0.18s;
}

.robot-arm-right span {
  transform: rotate(-28deg) scaleX(-1);
}

.robot-chip-base {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 6;
  width: 132px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18% 82%, rgba(255, 255, 255, 0.16)),
    linear-gradient(145deg, #2f3f60, #172236 70%);
  transform: translateX(-50%);
  animation: chipPulse 3.2s ease-in-out infinite;
}

.robot-chip-base::before,
.robot-chip-base::after {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 7px;
  background: repeating-linear-gradient(90deg, #3b4e73 0 10px, transparent 10px 20px);
  content: "";
}

.robot-chip-base::before {
  top: -7px;
}

.robot-chip-base::after {
  bottom: -7px;
}

.robot-chip-base span {
  position: absolute;
  inset: 10px 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #ecf5ff, #9eb7e7);
  color: #49669b;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.robot-chip-base i {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 24px;
  border-radius: 999px;
  background: #596b8f;
  transform: translateY(-50%);
}

.robot-chip-base i:nth-of-type(1) {
  left: -7px;
}

.robot-chip-base i:nth-of-type(2) {
  left: 12px;
}

.robot-chip-base i:nth-of-type(3) {
  right: 12px;
}

.robot-chip-base i:nth-of-type(4) {
  right: -7px;
}

.fintech-robot .hair,
.fintech-robot .glasses {
  display: none;
}

.fintech-robot .character-arm::after {
  display: none;
}

.floating-coin {
  animation: dataOrbit 4.8s ease-in-out infinite;
}

.floating-coin::after {
  position: absolute;
  inset: 12px;
  display: grid;
  place-items: center;
  color: #8d6505;
  font-size: 0.92rem;
  font-weight: 900;
  content: "$";
}

.coin-two::after {
  content: "%";
}

.cta-character.fintech-robot {
  --robot-scale: 0.58;
  --robot-shift-x: 0px;
  left: -2px;
  bottom: 18px;
  animation: robotHover 4.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transform-origin: bottom left;
}

.cta-character.fintech-robot::before {
  right: -54px;
  bottom: 0;
  width: 176px;
  height: 112px;
  background: linear-gradient(145deg, rgba(105, 225, 204, 0.34), rgba(79, 70, 229, 0.12));
}

[dir="rtl"] .hero-visual .fintech-robot {
  right: 0;
  left: auto;
}

@media (max-width: 1060px) {
  .hero-visual .fintech-robot {
    --robot-scale: 0.86;
    left: calc(50% - 248px);
    bottom: 52px;
  }

  .cta-character.fintech-robot {
    --robot-scale: 0.54;
    --robot-shift-x: -112%;
    left: 50%;
  }
}

@media (max-width: 720px) {
  .hero-visual .fintech-robot {
    --robot-scale: 0.68;
    left: calc(50% - 198px);
    bottom: 34px;
  }

  .cta-character.fintech-robot {
    --robot-scale: 0.48;
    --robot-shift-x: -114%;
  }
}

/* Clearer explanatory motion: calm, sequenced, and closer to the reference panels. */
@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -6px, 0) rotate(calc(var(--rotate, 0deg) + 0.35deg));
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.012);
  }
}

@keyframes robotHover {
  0%,
  100% {
    transform: translate3d(var(--robot-shift-x), 0, 0) rotate(-0.7deg) scale(var(--robot-scale));
  }
  50% {
    transform: translate3d(var(--robot-shift-x), -7px, 0) rotate(0.7deg) scale(var(--robot-scale));
  }
}

@keyframes dataOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(3px, -7px, 0) scale(1.025);
  }
}

@keyframes panelReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes objectFocus {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(-22px, 14px, 0) scale(0.92);
  }
  40%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes objectSort {
  0%,
  35% {
    opacity: 0;
    transform: translate3d(-18px, 10px, 0) scale(0.9);
  }
  60%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes personSettle {
  0%,
  45% {
    opacity: 0;
    transform: translate3d(18px, 10px, 0) scale(0.92);
  }
  70%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(var(--person-scale, 1));
  }
}

@keyframes chipReveal {
  0%,
  58% {
    opacity: 0;
    transform: translate3d(0, 9px, 0) scale(0.94);
  }
  78%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes routeDraw {
  0%,
  44% {
    opacity: 0;
    transform: scaleX(0);
  }
  70%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes shieldPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow:
      0 0 0 16px rgba(105, 225, 204, 0.08),
      0 0 54px rgba(79, 70, 229, 0.16),
      inset 0 0 38px rgba(255, 255, 255, 0.44);
  }
  50% {
    transform: translateX(-50%) scale(1.025);
    box-shadow:
      0 0 0 24px rgba(105, 225, 204, 0.04),
      0 0 62px rgba(79, 70, 229, 0.18),
      inset 0 0 38px rgba(255, 255, 255, 0.48);
  }
}

.cartoon-scene {
  animation: panelReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cartoon-scene::before {
  border-color: rgba(255, 255, 255, 0.82);
}

.scene-object {
  animation-duration: 6.8s;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
}

.scene-object-primary {
  animation-name: objectFocus;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.scene-object-secondary {
  animation-name: objectSort;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.scene-object-tertiary,
.floating-coin {
  animation-duration: 6.4s;
  animation-timing-function: ease-in-out;
}

.scene-person {
  --person-scale: 1;
  animation: personSettle 2.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cartoon-map .scene-person {
  --person-scale: 0.92;
}

.cartoon-analytics .scene-person {
  --person-scale: 0.86;
}

.scene-chips span {
  opacity: 0;
  animation: chipReveal 3.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scene-chips span:nth-child(1) {
  animation-delay: 0.2s;
}

.scene-chips span:nth-child(2) {
  animation-delay: 0.42s;
}

.scene-chips span:nth-child(3) {
  animation-delay: 0.64s;
}

.cartoon-scene strong {
  opacity: 0;
  animation: chipReveal 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.cartoon-map .scene-shadow,
.cartoon-analytics .scene-shadow {
  right: auto;
  bottom: 86px;
  left: 188px;
  z-index: 1;
  width: 184px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0), rgba(79, 70, 229, 0.2), rgba(105, 225, 204, 0));
  filter: blur(0);
  opacity: 0;
  transform-origin: left center;
  animation: routeDraw 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.cartoon-map .scene-object-secondary,
.cartoon-analytics .scene-object-secondary {
  z-index: 5;
}

.cartoon-map .scene-object-tertiary,
.cartoon-analytics .scene-object-tertiary {
  z-index: 3;
}

.cartoon-security .scene-object-primary {
  animation: shieldPulse 5.8s ease-in-out infinite;
}

.cartoon-security .scene-object-secondary {
  animation: objectSort 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cartoon-security .scene-person {
  animation: none;
  opacity: 1;
}

.floating-card {
  animation: chipReveal 2.8s cubic-bezier(0.22, 1, 0.36, 1) both, floatSoft 7.5s ease-in-out 2.8s infinite;
}

.floating-card-one {
  animation-delay: 0.35s, 2.8s;
}

.floating-card-two {
  animation-delay: 0.65s, 3s;
}

.fintech-robot,
.floating-coin,
.sparkle {
  animation-duration: 6.8s;
}

@media (prefers-reduced-motion: reduce) {
  .cartoon-scene,
  .cartoon-scene strong,
  .scene-object,
  .scene-person,
  .scene-chips span,
  .floating-card,
  .floating-coin,
  .fintech-robot,
  .sparkle {
    opacity: 1 !important;
    transform: none !important;
  }

  .cartoon-security .scene-object-primary,
  .cartoon-security .scene-object-secondary {
    transform: translateX(-50%) !important;
  }
}
