:root {
  color-scheme: light;
  --page-bg: #f3f6f8;
  --panel-bg: #ffffff;
  --text: #182026;
  --accent: #06c755;
  --shadow: 0 10px 30px rgba(12, 22, 32, 0.14);
  --content-width: 1122px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(20, 41, 55, 0.06) 1px, transparent 1px),
    var(--page-bg);
  background-size: 24px 24px;
}

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

a {
  color: inherit;
}

.lp {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
}

.visual-sequence {
  display: grid;
}

.visual-sequence img {
  width: 100%;
}

.first-view {
  position: relative;
}

.second-view {
  position: relative;
}

.visual-sequence .first-view__logo {
  position: absolute;
  top: 3.6%;
  left: 5.2%;
  width: 31.8%;
  max-width: 356px;
  height: auto;
  z-index: 2;
}

.first-view__line-link {
  position: absolute;
  left: 5.2%;
  top: 71.4%;
  width: 56.8%;
  height: 15.2%;
  border-radius: 10px;
}

.first-view__line-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.second-view__line-link {
  position: absolute;
  left: 6.8%;
  top: 68.6%;
  width: 52%;
  height: 11.8%;
  border-radius: 10px;
}

.second-view__line-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.line-cta {
  padding: 36px 18px 150px;
  background: transparent;
}

.line-cta a {
  display: block;
  width: min(100%, 880px);
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.24);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-cta {
  position: fixed;
  bottom: 6px;
  left: 50%;
  z-index: 30;
  display: block;
  width: min(calc(100% - 24px), calc(var(--content-width) - 24px));
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: translateX(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-cta img {
  width: 100%;
}

.line-cta a:hover,
.floating-cta:hover {
  box-shadow: none;
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 18px 220px;
  color: #69727d;
  font-size: 13px;
  background: #ffffff;
}

.legal-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .lp {
    box-shadow: none;
  }

  .visual-sequence .first-view__logo {
    width: 42%;
  }

  .line-cta {
    padding: 24px 12px 92px;
  }

  .floating-cta {
    bottom: 6px;
    width: calc(100% - 20px);
  }

  .legal-footer {
    padding-bottom: 132px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
