:root {
  --page-bg: #f7f1e7;
  --lp-width: 480px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(7, 49, 88, 0.08), transparent 18%, transparent 82%, rgba(7, 49, 88, 0.08)),
    var(--page-bg);
  color: #073158;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

.lp {
  width: 100%;
  max-width: var(--lp-width);
  margin: 0 auto;
  background: #fff8ed;
  box-shadow: 0 0 32px rgba(7, 49, 88, 0.12);
}

.lp > img,
.section-link > img {
  width: 100%;
}

.hero-visual {
  position: relative;
}

.hero-visual > img {
  display: block;
  width: 100%;
  height: auto;
}

.ctaBtn {
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 2;
  display: block;
  width:90%;
  max-width: 100%;
  transform: translateX(-50%);
}

.ctaBtn img {
  display: block;
  width: 100%;
  height: auto;
}

.section-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.section-link:focus-visible {
  outline: 3px solid #c5963a;
  outline-offset: -6px;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 20;
  display: block;
  width: min(94vw, 720px);
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 18px rgba(7, 49, 88, 0.28));
}

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

.floating-cta:focus-visible {
  border-radius: 999px;
  outline: 3px solid #d1a347;
  outline-offset: 4px;
}

@media (min-width: 980px) {
  .floating-cta {
    width: 620px;
  }
}

.finalCta {
  bottom: 40%;
}

footer {
  position: relative;
  width: 100%;
  max-width: var(--lp-width);
  background: #262626;
  margin: 0 auto;
  padding: 16px 16px;
  text-align: center;
  font-size: clamp(12px, 3vw, 14px);
  color: #737373;
}

footer .links {
  display: flex;
  justify-content: center;
  padding: 16px 16px;
}

footer .links a {
  display: inline-block;
  margin: 0 8px;
  color: #737373;
  text-decoration: none;
}