:root {
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --bg: #f7faff;
  --bg-2: #edf3ff;
  --text: #090c18;
  --muted: rgba(9, 12, 24, 0.66);
  --line: rgba(89, 158, 255, 0.14);

  --blue: #599eff;
  --blue-soft: #9ed1ff;
  --green: #34c759;

  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(900px 500px at 20% 2%, rgba(158, 209, 255, 0.32), transparent 62%),
    radial-gradient(800px 440px at 82% 8%, rgba(89, 158, 255, 0.18), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 30%, #f5f9ff 62%, var(--bg) 82%, var(--bg-2) 100%);
  background-color: var(--bg-2);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18% -10%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(158, 209, 255, 0.26) 38deg,
    transparent 78deg,
    rgba(89, 158, 255, 0.16) 118deg,
    transparent 172deg,
    rgba(158, 209, 255, 0.2) 232deg,
    transparent 292deg,
    rgba(89, 158, 255, 0.14) 334deg,
    transparent 360deg
  );
  filter: blur(48px) saturate(120%);
  opacity: 0.46;
  animation: shineSweep 28s ease-in-out infinite alternate;
}

body::after {
  background: radial-gradient(520px 260px at 18% 22%, rgba(255, 255, 255, 0.66), transparent 66%),
    radial-gradient(440px 240px at 82% 18%, rgba(255, 255, 255, 0.42), transparent 68%);
  filter: blur(20px);
  opacity: 0.62;
}

@keyframes shineSweep {
  0% {
    transform: translate3d(-2.2%, -1.6%, 0) rotate(-3deg) scale(1);
  }
  100% {
    transform: translate3d(2%, 1.4%, 0) rotate(3deg) scale(1.03);
  }
}

@keyframes softEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  padding: clamp(18px, 3vw, 40px);
}

@media (min-width: 961px) {
  body {
    min-height: 100vh;
  }
}

@media (prefers-color-scheme: dark) {
  body::before {
    opacity: 0.42;
  }
  body::after {
    opacity: 0.58;
  }
}

.wrap {
  width: min(1240px, 96vw);
  min-height: 100%;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 3vh, 34px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 2px;
  color: var(--text);
  text-decoration: none;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: clamp(44px, 3vw, 54px);
  height: clamp(44px, 3vw, 54px);
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(89, 158, 255, 0.2), 0 8px 18px rgba(0, 0, 0, 0.16);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: clamp(20px, 3vh, 34px);
}

.hero-head {
  text-align: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
}

h1 {
  margin: 18px auto 0;
  max-width: 980px;
  font-size: clamp(40px, 5.4vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lead {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 30px);
  line-height: 1.45;
}

.store-row {
  margin-top: 22px;
}

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f152d, #090d1f);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(89, 158, 255, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 16px;
  font-weight: 700;
}

.stage {
  min-height: 0;
  position: relative;
  display: grid;
  place-items: end center;
}

.phone-swiper {
  width: min(520px, 54vh);
  height: min(76vh, 770px);
  overflow: hidden;
  background: transparent;
  filter: drop-shadow(0 32px 72px rgba(0, 0, 0, 0.34));
}

.phone-swiper .swiper-wrapper,
.phone-swiper .swiper-slide {
  height: 100%;
}

.phone-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.phone-swiper .swiper-pagination,
.phone-swiper .swiper-button-prev,
.phone-swiper .swiper-button-next {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 8px 2px 4px;
  color: var(--muted);
  font-size: 13px;
}

.backlink-section {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.backlink-card {
  width: 100%;
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(89, 158, 255, 0.22);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: calc(var(--radius) - 6px);
  --badge-cols: 6;
  --badge-height: 43px;
}

.backlink-badges {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--badge-cols), minmax(0, 1fr));
  justify-items: center;
  align-items: center;
  gap: 12px 12px;
}

.backlink-badges a,
.backlink-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.backlink-badges img,
.backlink-badge img {
  display: block;
}

.backlink-badges > a > img {
  height: var(--badge-height);
  width: auto;
  max-width: 100%;
}

#fys-badge-6990410b58ee9c6cf94a00dc-1771061529161:hover .fys-badge-inner {
  transform: translateY(-1px);
  box-shadow: 0 6px 10px -2px rgba(0, 0, 0, 0.05), 0 3px 6px -2px rgba(0, 0, 0, 0.05);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

a:focus-visible {
  outline: 2px solid rgba(89, 158, 255, 0.9);
  outline-offset: 2px;
  border-radius: 12px;
}

@media (max-width: 960px) {
  .topbar {
    justify-content: center;
  }

  .brand {
    font-size: clamp(16px, 4.4vw, 20px);
    gap: 12px;
    justify-content: center;
    text-align: center;
  }

  .hero {
    gap: 18px;
  }
  .stage {
    place-items: center;
    margin-top: 8px;
  }
  .phone-swiper {
    width: min(540px, 100%);
    height: min(72vh, 720px);
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    text-align: center;
    width: 100%;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }

  .backlink-card {
    padding: 12px;
    --badge-cols: 2;
  }
}

@media (min-width: 961px) and (max-height: 780px) {
  h1 {
    font-size: clamp(40px, 5.3vw, 84px);
  }
  .lead {
    font-size: clamp(15px, 1.2vw, 22px);
    margin-top: 12px;
  }
  .store-row {
    margin-top: 14px;
  }
  .phone-swiper {
    width: min(460px, 48vh);
    height: min(66vh, 650px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  body::before {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .topbar,
  .hero-head,
  .stage,
  .site-footer {
    animation: softEnter 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-head {
    animation-delay: 60ms;
  }

  .stage {
    animation-delay: 90ms;
  }

  .site-footer {
    animation-delay: 120ms;
  }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 961px) {
  .phone-swiper {
    will-change: transform;
    animation: softFloat 10s ease-in-out infinite;
  }
}
    
