@charset "UTF-8";

@font-face {
  font-family: "SN Pro";
  src: url("fonts/SNPro-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "SN Pro";
  src: url("fonts/SNPro-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "SN Pro";
  src: url("fonts/SNPro-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "SN Pro";
  src: url("fonts/SNPro-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

:root {
  --ink: #16213f;
  --muted: #65728f;
  --line: #dce8fb;
  --panel: #ffffff;
  --soft: #f4fbff;
  --mint: #e5f8ff;
  --green: #42c2ee;
  --green-dark: #6255e8;
  --violet: #7b5cff;
  --sky: #52cdf3;
  --shadow: 0 24px 60px rgba(77, 121, 219, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fdff 0%, #eef8ff 46%, #ffffff 100%);
  font-family: "SN Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.soap-bubbles {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.soap-bubble {
  position: absolute;
  left: var(--bubble-left);
  bottom: -16vh;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 50%;
  opacity: var(--bubble-opacity);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.98) 0 9%, transparent 10%),
    radial-gradient(circle at 72% 78%, rgba(119, 213, 247, 0.42) 0 16%, transparent 42%),
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 55%, transparent 70%);
  border: 1px solid rgba(75, 178, 215, 0.56);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.62),
    inset 7px 8px 18px rgba(255, 255, 255, 0.24),
    0 0 22px rgba(75, 178, 215, 0.2);
  animation:
    bubble-rise var(--bubble-duration) linear var(--bubble-delay) infinite,
    bubble-sway calc(var(--bubble-duration) * 0.42) ease-in-out var(--bubble-delay) infinite alternate;
  will-change: bottom, margin-left;
}

@keyframes bubble-rise {
  from {
    bottom: -18vh;
  }

  to {
    bottom: 118vh;
  }
}

@keyframes bubble-sway {
  from {
    margin-left: calc(var(--bubble-drift) * -1);
  }

  to {
    margin-left: var(--bubble-drift);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soap-bubbles {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 232, 251, 0.86);
  background: rgba(248, 253, 255, 0.9);
  backdrop-filter: blur(16px);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px auto;
  border-radius: 999px;
  background: var(--green-dark);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  outline: 1px solid rgba(98, 85, 232, 0.34);
  outline-offset: 2px;
}

.nav a:hover,
.footer a:hover {
  color: var(--green);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 1.2em;
}

.language-trigger,
.language-option {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-option:hover,
.language-option:focus-visible,
.language-option[aria-selected="true"] {
  outline: 1px solid rgba(98, 85, 232, 0.34);
  outline-offset: 2px;
}

.language-flag-image,
.language-option img {
  display: block;
  width: 26px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(77, 121, 219, 0.14), inset 0 0 0 1px rgba(22, 33, 63, 0.12);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.language-menu[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 96px) 42px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  box-shadow: 0 14px 30px rgba(82, 141, 238, 0.3);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.phone-shell {
  position: relative;
  min-height: 570px;
  padding: 24px;
  border: 1px solid rgba(204, 224, 251, 0.94);
  border-radius: 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1.25rem;
  font-weight: 800;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--violet));
}

.search-row,
.notice {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.88rem;
}

.search-row {
  padding: 14px 16px;
}

.notice {
  margin-top: 10px;
  padding: 11px 14px;
  background: #f2f7f5;
}

.bubble-field {
  position: relative;
  min-height: 430px;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #25194a;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.28) 34%, transparent 36%),
    radial-gradient(circle at 62% 68%, rgba(131, 103, 255, 0.28), rgba(119, 213, 247, 0.22) 58%, rgba(255, 255, 255, 0.2)),
    rgba(232, 244, 255, 0.82);
  border: 1px solid rgba(154, 131, 255, 0.42);
  box-shadow: 0 20px 38px rgba(95, 68, 190, 0.18), inset 0 1px 18px rgba(255, 255, 255, 0.82);
}

.bubble img {
  width: 30%;
  min-width: 28px;
  max-width: 48px;
}

.bubble strong {
  margin-top: -8px;
  font-size: 0.88rem;
}

.bubble span {
  margin-top: -12px;
  font-size: 1.15rem;
  font-weight: 900;
}

.bubble.large {
  width: 184px;
  height: 184px;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
}

.bubble.medium {
  width: 148px;
  height: 148px;
}

.bubble.small {
  width: 116px;
  height: 116px;
}

.b2 {
  left: 10%;
  top: 218px;
}

.b3 {
  right: 8%;
  top: 228px;
}

.b4 {
  left: 39%;
  bottom: 20px;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  padding: 22px clamp(20px, 6vw, 96px) 56px;
}

.platform-strip img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 10px 16px rgba(77, 121, 219, 0.12));
}

.platform-strip img[src*="x.svg"] {
  padding: 7px;
  box-sizing: border-box;
}

.platform-strip img[src*="amazon.svg"] {
  padding: 6px;
  box-sizing: border-box;
  background: #ffffff;
}

.screenshot-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 48px;
  background: transparent;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 2px 18px;
  background: transparent;
}

.carousel-track.is-centered {
  justify-content: center;
}

.screenshot-carousel.is-centered {
  grid-template-columns: minmax(0, 1fr);
}

.screenshot-carousel.is-centered .carousel-nav {
  display: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 clamp(138px, 17vw, 210px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  cursor: zoom-in;
  overflow: hidden;
  scroll-snap-align: center;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  grid-column: 1 / -1;
  margin-top: -2px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(101, 114, 143, 0.34);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky), var(--violet));
}

.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-nav,
.lightbox-nav,
.lightbox-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.carousel-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(77, 121, 219, 0.13);
  font-size: 2rem;
  line-height: 1;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  padding: 36px clamp(16px, 4vw, 48px);
  background: rgba(7, 13, 11, 0.82);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  justify-self: center;
  max-width: min(1120px, 100%);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2.4rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
}

.lightbox-open {
  overflow: hidden;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 96px);
}

.video-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  overflow: visible;
}

.video-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 520px;
}

.store-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.store-badge-link {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.store-badge-button {
  position: relative;
}

.store-badge-wrapper {
  position: relative;
  z-index: 4;
}

.store-badges img {
  display: block;
  width: clamp(220px, 26vw, 320px);
  height: auto;
  border-radius: 13px;
  filter: drop-shadow(0 12px 20px rgba(77, 121, 219, 0.14));
}

.store-tooltip {
  position: absolute;
  z-index: 45;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 20, 0.92);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.store-badge-wrapper:hover .store-tooltip,
.store-badge-wrapper:focus-within .store-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0f1714;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-audio-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 20, 0.82);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article,
.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 32px rgba(77, 121, 219, 0.08);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky), var(--violet));
  box-shadow: 0 12px 24px rgba(82, 141, 238, 0.24);
  font-size: 1.08rem;
  font-weight: 800;
}

.steps p,
.feature-grid p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #ffffff;
}

.feature-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 96px);
  right: clamp(20px, 6vw, 96px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky), var(--violet));
  opacity: 0.86;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

.policy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 20px 80px;
}

.policy h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.policy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.policy h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.policy ul {
  padding-left: 22px;
}

.policy a {
  color: var(--green);
  font-weight: 800;
}

.playstore-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 20px 80px;
}

.playstore-panel {
  display: grid;
  gap: 30px;
  align-items: start;
}

.playstore-copy {
  display: grid;
  gap: 22px;
}

.playstore-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.playstore-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.playstore-steps {
  display: grid;
  gap: 18px;
}

.playstore-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 32px rgba(77, 121, 219, 0.08);
}

.playstore-step span {
  flex: 1 1 320px;
  min-width: 0;
}

.playstore-step .button {
  flex: 0 0 auto;
}

.playstore-image {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.playstore-image img {
  display: block;
  width: 100%;
  height: auto;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer {
  direction: rtl;
}

html[dir="rtl"] .policy ul {
  padding-right: 22px;
  padding-left: 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .video-section {
    grid-template-columns: 1fr;
  }

  .video-section {
    row-gap: 60px;
  }

  .video-frame {
    order: 1;
  }

  .video-copy {
    order: 2;
    justify-content: center;
    max-width: none;
  }

  .store-badges {
    align-items: center;
    margin: 0 auto;
  }

  .store-tooltip {
    left: 50%;
    top: calc(100% + 10px);
    bottom: auto;
    transform: translateX(-50%) translateY(-6px);
  }

  .store-badge-wrapper:hover .store-tooltip,
  .store-badge-wrapper:focus-within .store-tooltip {
    transform: translateX(-50%) translateY(0);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playstore-step {
    align-items: flex-start;
  }

  .screenshot-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    display: none;
  }

  .image-lightbox {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    display: none;
  }

  .phone-shell {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .header-actions {
    flex: 1;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 34px;
    z-index: 35;
    display: none;
    min-width: 190px;
    padding: 10px;
    border: 1px solid rgba(220, 232, 251, 0.94);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 46px rgba(77, 121, 219, 0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: visible;
    white-space: normal;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(229, 248, 255, 0.92);
  }

  .footer {
    justify-content: center;
    gap: 10px 14px;
    padding: 20px 16px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
  }

  .footer span,
  .footer a {
    white-space: nowrap;
  }

  .language-menu {
    right: 0;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .carousel-dots {
    display: flex;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .playstore-step .button {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    min-height: 500px;
    padding: 18px;
    border-radius: 32px;
  }

  .bubble.large {
    width: 154px;
    height: 154px;
  }

  .bubble.medium {
    width: 128px;
    height: 128px;
  }

  .bubble.small {
    width: 102px;
    height: 102px;
  }
}
