:root {
  --bg: #f4f6fc;
  --bg-alt: #e8ecf8;
  --surface: #ffffff;
  --ink: #0f1235;
  --ink-soft: #4a5080;
  --ink-faint: #7a80a8;
  --line: rgba(15, 18, 53, 0.08);
  --primary: #1a1f6b;
  --primary-2: #2a3199;
  --primary-3: #3d48c4;
  --primary-tint: #e6e8f9;
  --primary-glow: rgba(42, 49, 153, 0.35);
  --gold: #f2a93b;
  --gold-2: #ffce7a;
  --gold-tint: #fff3de;
  --teal: #0f9b82;
  --teal-tint: #d9f5ef;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 16px rgba(15, 18, 53, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 18, 53, 0.12);
  --shadow-lg: 0 30px 70px rgba(15, 18, 53, 0.18);
  --ease: cubic-bezier(0.22, 0.68, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--gold));
  border-radius: 2px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 12px 28px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-4px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(242, 169, 59, 0.35);
}
.btn-gold:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  animation: drift 24s ease-in-out infinite;
}
.blob-a {
  width: 580px;
  height: 580px;
  background: var(--primary-tint);
  top: -200px;
  right: -140px;
}
.blob-b {
  width: 460px;
  height: 460px;
  background: rgba(42, 49, 153, 0.18);
  bottom: -160px;
  left: -120px;
  animation-delay: -9s;
}
.blob-c {
  width: 380px;
  height: 380px;
  background: var(--teal-tint);
  top: 38%;
  left: 58%;
  animation-delay: -16s;
}
.grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(15, 18, 53, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}
@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -40px) scale(1.07);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.96);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 246, 252, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.35s,
    box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(15, 18, 53, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-image {
  width: 180px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}
.foot-brand .logo-image {
  width: 164px;
  height: 52px;
}
.logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-tint);
}
.logo span {
  color: var(--primary-2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--gold));
  transition: width 0.35s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.store-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.25s var(--ease-out),
    color 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.store-link .store-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}
.store-link[href*='play.google.com'] {
  background: #000;
  color: #fff;
  border-color: #000;
}
.store-link[href*='apps.apple.com'] {
  background: #000;
  color: #fff;
  border-color: #000;
}
.store-link:hover {
  transform: translateY(-2px);
  color: var(--primary-2);
  border-color: var(--primary-2);
  box-shadow: var(--shadow-sm);
}
.store-link[href*='play.google.com']:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.store-link[href*='apps.apple.com']:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1.5px solid var(--line);
}
.nav-toggle .icon {
  width: 20px;
  height: 20px;
}
.nav-toggle .icon-close {
  display: none;
}
.nav.open .icon-menu {
  display: none;
}
.nav.open .icon-close {
  display: block;
}

.page-hero {
  padding: 150px 0 70px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  margin: 16px 0 14px;
}
.page-hero p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero-img {
  max-width: 800px;
  width: 100%;
  margin: 48px auto 0;
  height: auto;
}

.section-pad {
  padding: 80px 0 100px;
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.content-split.reverse {
  direction: rtl;
}
.content-split.reverse > * {
  direction: ltr;
}
.content-split h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 12px 0 14px;
}
.content-split p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 18px;
}

.service-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
}

.page-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.page-img:hover img {
  transform: scale(1.02);
}

.img-reveal {
  opacity: 0;
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out);
}
.img-reveal.from-left {
  transform: translateX(-90px);
}
.img-reveal.from-right {
  transform: translateX(90px);
}
.img-reveal.from-top {
  transform: translateY(-90px);
}
.img-reveal.from-bottom {
  transform: translateY(90px);
}
.img-reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.img-grid .page-img {
  height: auto;
}
.img-grid .page-img img {
  width: 100%;
  height: auto;
  max-height: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  overflow: hidden;
}
.step-card .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-2);
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.step-card .page-img {
  height: auto;
}
.step-card .page-img img {
  width: 100%;
  height: auto;
  max-height: none;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.feat-card .page-img {
  height: auto;
  margin-bottom: 18px;
}
.feat-card .page-img img {
  width: 100%;
  height: auto;
  max-height: none;
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.cta-section {
  padding: 0 0 100px;
}
.cta-box {
  background: linear-gradient(145deg, #0f1235 0%, #1a1f6b 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 68px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
  margin-bottom: 52px;
}
.foot-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 14px 0 0;
  max-width: 280px;
}
.foot-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.foot-col a:hover {
  color: var(--primary-2);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .content-split {
    grid-template-columns: 1fr;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .steps-grid,
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .wrap,
  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s var(--ease-out);
  }
  .nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .store-links {
    display: none;
  }
  .page-hero {
    padding: 130px 0 50px;
  }
  .page-hero-img {
    height: 240px;
  }
  .img-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.2s !important;
    scroll-behavior: auto !important;
  }
}
