: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;
}

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;
}

.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;
}

.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: #ffffff;
  border: 4px solid #3c3c3c;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.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: 10px;
  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: 12px 0;
  display: inline-flex;
  gap: 24px;
  min-width: 100%;
  animation: marquee 28s linear infinite;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@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;
}

@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;
  }

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

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

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

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

}
