:root {
  --bg: #f4f4f4;
  --paper: #ffffff;
  --ink: #171a3d;
  --muted: #6f7387;
  --accent: #b9ea4d;
  --navy: #101544;
  --line: #e8e8ec;
  --soft-yellow: #f5e772;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  color: var(--ink);
}

.page-wrap {
  width: 100%;
  margin: 0;
  background: var(--paper);
}

.container {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.topbar {
  height: 94px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 36px;
}

.menu a,
.actions a {
  color: #2f3248;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

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

.btn {
  border: 1.5px solid #101433;
  color: #13202f;
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 11px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-small {
  font-size: 12px;
  padding: 11px 20px;
  border-radius: 10px;
}

.btn-outline {
  background: var(--accent);
}

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 46px;
  align-items: center;
  padding: 42px 8px;
  background-image: linear-gradient(to right, rgba(23, 26, 61, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 26, 61, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(23, 26, 61, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 26, 61, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-left h1 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  min-height: calc(1.06em * 2);
  padding-right: 0.18em;
}

.free-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #111744;
  background: #f3f6ff;
  color: #111744;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(185, 234, 77, 0.45);
  animation: chipGlow 2.2s ease-in-out infinite;
}

.free-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9ea4d;
  box-shadow: 0 0 0 0 rgba(185, 234, 77, 0.7);
  animation: dotPulse 1.6s ease-out infinite;
}

@keyframes chipGlow {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(185, 234, 77, 0.45),
      0 0 18px rgba(185, 234, 77, 0.3);
  }
  50% {
    box-shadow:
      0 0 18px rgba(185, 234, 77, 0.7),
      0 0 32px rgba(185, 234, 77, 0.45);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 234, 77, 0.85);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(185, 234, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(185, 234, 77, 0);
  }
}

.typed-headline {
  display: inline;
  min-height: 1.08em;
}

.typed-headline::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.08em;
  vertical-align: -0.08em;
  background: #171a3d;
  animation: caretBlink 0.9s steps(1) infinite;
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

.hero-left p {
  margin: 24px 0 34px;
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  object-fit: cover;
  margin-left: -12px;
}

.avatars img:first-child {
  margin-left: 0;
}

.stat-text,
.rating {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-text strong,
.rating strong {
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-text span,
.rating span {
  color: #65697c;
  font-size: 16px;
}

.stars {
  color: #17b66d;
  font-size: 18px;
  letter-spacing: 1px;
}

.stars span {
  margin-left: 10px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mock-wrap {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-mock-link {
  display: inline-block;
}

.hero-mock {
  width: fit-content;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  background: #ECEEEF;
  border: 3px solid #3c3c3c;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.hero-mock img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f6f6f6;
}

.live-link {
  text-decoration: none;
  color: #171a3d;
  background: #eef0f7;
  border: 1px solid #171a3d;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.live-link:hover {
  background: #b9ea4d;
  transform: translateY(-1px);
}

.burst {
  position: absolute;
  right: -30px;
  top: 40%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    var(--soft-yellow) 0deg 14deg,
    #1c2555 14deg 18deg,
    transparent 18deg 30deg
  );
  z-index: 1;
}

.benefits {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

.benefits h2,
.split-copy h2,
.reviews h2 {
  margin: 0;
  font-size: clamp(40px, 4.3vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7ea7a;
  border: 1px solid #20253e;
  display: grid;
  place-items: center;
  font-size: 22px;
  grid-row: span 2;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.benefit-grid h3 {
  margin: 4px 0 0;
  font-size: 29px;
  letter-spacing: -0.03em;
}

.benefit-grid p,
.split-copy p,
.footer p,
.footer a,
.review-grid p {
  margin: 8px 0 0;
  color: #666a7f;
  font-size: 17px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 88px 8px;
}

.split-reverse {
  padding-top: 0;
}

.device-shot {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbdce4;
}

.device-shot.mockup-device {
  border-radius: 30px;
  border: 3px solid #3c3c3c;
  background: #ffffff;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 68%;
  justify-self: center;
}

.device-shot img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.device-shot.mockup-device img {
  height: auto;
  max-height: 600px;
  object-fit: contain;
  background: #f6f6f6;
  border-radius: 22px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.highlight-free {
  color: #111744;
  background: #b9ea4d;
  border-radius: 10px;
  padding: 0.02em 0.22em;
  display: inline-block;
  margin-top: 0.20em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.split-copy .btn {
  margin-top: 26px;
}

.ticker {
  background: #11174a;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #1e245e;
  border-bottom: 1px solid #1e245e;
}

.ticker-track {
  padding: 16px 0;
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
  flex-shrink: 0;
}

.ticker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticker-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  stroke-width: 2.2;
}

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

.reviews {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--line);
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid #111744;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.review-grid .stars {
  font-size: 15px;
  margin-bottom: 8px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.review-grid p {
  font-size: 13px;
  margin: 0;
  min-height: 82px;
}

.author {
  margin-top: 12px;
  color: #262a43;
  font-size: 12px;
  font-weight: 600;
}

.footer {
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 13px;
  color: #2a2e45;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer .logo img {
  height: 52px;
}

.footer p {
  font-size: 12px;
  margin-top: 10px;
  max-width: 320px;
}

.footer a {
  display: block;
  text-decoration: none;
  font-size: 12px;
  margin: 7px 0;
}

.store {
  width: 140px;
  border: 1px solid #171a3d;
  border-radius: 8px;
  padding: 8px 10px;
  color: #171a3d;
  text-align: center;
  font-weight: 700;
}

.store-badge {
  width: 178px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 6px 0;
  overflow: hidden;
  border-radius: 10px;
}

.store-badge img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.footer .store-badge {
  width: 170px;
    height: 52px;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.footer .store-badge img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform: none;
}

.footer .store-badge--app img {
  transform: scale(1.16);
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.contact-modal.is-open {
  display: grid;
  place-items: center;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 46, 0.46);
}

.contact-modal__card {
  position: relative;
  width: min(92vw, 460px);
  margin: 0;
  background: #ffffff;
  border: 1.5px solid #111744;
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 50px rgba(17, 23, 68, 0.22);
}

.contact-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid #111744;
  border-radius: 8px;
  background: #f4f6ff;
  color: #111744;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.contact-modal__card p {
  margin: 0 0 16px;
  color: #666a7f;
  font-size: 15px;
  line-height: 1.5;
}

.contact-action {
  display: block;
  text-decoration: none;
  color: #171a3d;
  border: 1px solid #111744;
  border-radius: 12px;
  padding: 11px 12px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  background: #eef0f7;
}

.contact-action:hover {
  background: #b9ea4d;
}

.download-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

.download-modal.is-open {
  display: grid;
  place-items: center;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 29, 0.78);
}

.download-modal__card {
  position: relative;
  width: min(92vw, 620px);
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 30px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  z-index: 1;
}

.download-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #5e5e5e;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

#downloadTitle {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.download-modal__qr-wrap {
  width: 248px;
  height: 248px;
  border-radius: 22px;
  background: #ffffff;
  margin: 28px auto 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.download-modal__qr-wrap img {
  width: 194px;
  height: 194px;
  object-fit: contain;
  display: block;
}

.download-modal__card p {
  margin: 0 auto;
  text-align: center;
  color: #636363;
  font-size: 17px;
  line-height: 1.45;
  max-width: 440px;
}

.download-modal__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.download-modal__actions .download-store-badge {
  width: 170px;
  height: 52px;
  border-radius: 8px;
  background: #000000;
  overflow: hidden;
  padding: 0;
}

.download-modal__actions .download-store-badge img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform: none !important;
}

.download-modal__actions .store-badge--app img {
  transform: scale(1.16) !important;
}

@media (max-width: 760px) {
  .download-modal__card {
    padding: 26px 16px 20px;
    border-radius: 16px;
  }

  #downloadTitle {
    font-size: 36px;
  }

  .download-modal__qr-wrap {
    width: 210px;
    height: 210px;
    margin-top: 22px;
  }

  .download-modal__qr-wrap img {
    width: 166px;
    height: 166px;
  }

  .download-modal__card p {
    font-size: 16px;
  }

  .download-modal__actions {
    gap: 10px;
    flex-wrap: wrap;
  }

  .download-modal__actions .download-store-badge {
    width: 156px;
    height: 48px;
  }

  .download-modal__actions .store-badge--app img {
    transform: scale(1.16) !important;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-grid,
  .review-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .menu {
    display: none;
  }

}

@media (max-width: 760px) {
  .page-wrap {
    margin: 0;
  }

  .topbar {
    height: auto;
    padding: 18px 14px;
  }

  .actions {
    gap: 10px;
  }

  .logo {
    line-height: 0;
  }

  .logo img {
    height: 36px;
  }

  .hero {
    padding: 20px 14px 34px;
  }

  .hero-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 48px;
    min-height: calc(1.06em * 2);
  }

  .hero-left p {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mock img {
    max-height: 420px;
  }

  .live-link {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .stat-text strong,
  .rating strong {
    font-size: 24px;
  }

  .stat-text span,
  .rating span {
    font-size: 14px;
  }

  .benefits,
  .split,
  .reviews,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .benefits h2,
  .split-copy h2,
  .reviews h2 {
    font-size: 40px;
  }

  .benefit-grid,
  .review-grid,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .benefits h2,
  .split-copy,
  .split-copy h2,
  .split-copy p,
  .reviews h2,
  .review-head,
  .card,
  .footer,
  .footer h4,
  .footer p,
  .footer a {
    text-align: center;
  }

  .benefit-grid article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 8px;
  }

  .benefit-grid .icon {
    grid-row: auto;
  }

  .split-copy p {
    margin-left: auto;
    margin-right: auto;
    max-width: 42ch;
  }

  .split-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .split-reverse .split-copy {
    order: 2;
  }

  .split-reverse .device-shot {
    order: 1;
  }

  .device-shot img {
    height: 480px;
  }

  .review-head {
    flex-direction: column;
    align-items: center;
  }

  .review-head .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .store-badge img {
    max-width: 100%;
    max-height: 100%;
  }

  .footer .store-badge {
    width: 156px;
    height: 48px;
  }

  .footer .store-badge--app img {
    transform: scale(1.16);
  }

}
