:root {
  --lp-color-blue: #2285F0;
  --lp-color-cyan: #1fceff;
  --lp-color-black: #000000;
  --lp-color-white: #ffffff;
  --lp-color-gray-50: #f7f7f7;
  --lp-color-gray-400: #9e9e9e;
  --lp-color-gray-600: #484848;
  --lp-color-gray-800: #1a1a1a;
  --lp-font-sans: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --lp-container: 1200px;
}

.lp * {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

.lp {
  margin: 0;
  font-family: var(--lp-font-sans);
  color: var(--lp-color-gray-800);
  -webkit-font-smoothing: antialiased;
}

.lp img,
.lp video {
  max-width: 100%;
}

.lp__container {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 24px;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--lp-color-white);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.lp-header__logo {
  display: inline-flex;
  text-decoration: none;
}

.lp-header__logo img {
  height: 28px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-header__logo:hover img {
  transform: scale(1.08);
}

@keyframes lp-logo-bounce {
  0% { transform: scale(1); }
  35% { transform: scale(0.9); }
  65% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.lp-header__logo.is-clicked img {
  animation: lp-logo-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-header__nav a {
  position: relative;
  display: inline-block;
  color: var(--lp-color-gray-800);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.15s ease-out;
  -webkit-touch-callout: none;
}

.lp-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--lp-color-blue);
  transition: width 0.15s ease-out;
}

@media (hover: hover) {
  .lp-header__nav a:hover {
    color: var(--lp-color-blue);
  }

  .lp-header__nav a:hover::after {
    width: 100%;
  }
}

.lp-header__nav-cta {
  display: none;
}

.lp-header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4FA3F7 0%, #2285F0 100%);
  color: var(--lp-color-white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-header__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a6fd1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.lp-header__cta-label {
  position: relative;
  z-index: 1;
}

.lp-header__cta:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) scale(1.05);
}

.lp-header__cta:hover::before {
  opacity: 1;
}

.lp-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.lp-header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-color-gray-800);
  margin: 5px 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.lp-header__mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-header__mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.lp-header__mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 히어로 ── */
.lp-hero {
  background: var(--lp-color-white);
  padding: 72px 0 96px;
  text-align: center;
}

@keyframes lp-hero-text-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-hero__badge {
  font-size: 1.15rem;
  font-weight: 200;
  color: var(--lp-color-black);
  margin-bottom: 32px;
  animation: lp-hero-text-in 0.8s ease-out 0.2s both;
}

.lp-hero__badge-text {
  display: inline-block;
  letter-spacing: 0.294em;
  transform: scaleX(0.92);
}

.lp-hero__title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 8px 0 40px;
  animation: lp-hero-text-in 0.8s ease-out 0.4s both;
}

.lp-hero__title strong {
  color: var(--lp-color-blue);
  font-weight: 700;
}

.lp-hero__subtext {
  font-size: 1.6rem;
  font-weight: 250;
  color: var(--lp-color-black);
  margin: 24px 0 72px;
  animation: lp-hero-text-in 0.8s ease-out 0.6s both;
}

@keyframes lp-video-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.lp-hero__media {
  width: 90%;
  margin: 0 auto;
  background: var(--lp-color-black);
  overflow: hidden;
  aspect-ratio: 2 / 1;
  animation: lp-hero-text-in 0.8s ease-out 0.8s both;
}

.lp-hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: lp-video-zoom 16s ease-in-out infinite alternate;
}

.lp-solution {
  text-align: center;
  color: var(--lp-color-white);
}

.lp-solution .lp__container {
  position: relative;
  padding-top: clamp(32px, 0.19px + 7.484vw, 90px);
  padding-bottom: clamp(32px, 0.19px + 7.484vw, 90px);
  background: url('/images/landing-tech-solution.jpg') center / cover no-repeat;
  overflow: hidden;
}

.lp-solution .lp__container.lp-reveal {
  transform: scale(1.06);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.lp-solution .lp__container.lp-reveal.is-visible {
  transform: scale(1);
}

.lp-solution__label,
.lp-solution__title,
.lp-solution__subtext {
  position: relative;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.lp-solution__label {
  font-size: clamp(0.85rem, 10.53px + 0.723vw, 1.2rem);
  font-weight: 300;
  letter-spacing: clamp(0.2em, 1.45px + 0.413vw, 0.4em);
  margin-bottom: clamp(32px, 22.13px + 2.323vw, 50px);
  transition-delay: 0s;
}

.lp-solution__title {
  font-size: clamp(1.6rem, 8.93px + 3.923vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 24px;
  transition-delay: 0.15s;
}

.lp-solution__subtext {
  font-size: clamp(1rem, 10.30px + 1.342vw, 1.65rem);
  font-weight: 300;
  opacity: 0.9;
  transition-delay: 0.3s;
}

.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal-zoom {
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.lp-reveal-zoom.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lp-why {
  position: relative;
  padding: clamp(24px, 10.84px + 3.097vw, 48px) 0 0;
  background-color: var(--lp-color-white);
  overflow-x: hidden;
}

.lp-why::before {
  content: '';
  position: absolute;
  inset: 0; 
  background-image: url('/images/landing-why-watermark.png');
  background-repeat: no-repeat;
  background-position: calc(50% - 100px) calc(clamp(200px, 35vw, 500px) - 100px);
  background-size: clamp(286px, 100.65px + 43.613vw, 624px) auto;
  opacity: 0.37;
  pointer-events: none;
  z-index: 0;
}

.lp-why__grid {
   position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.lp-why__content {
  position: relative;
}

.lp-why__title {
  font-size: clamp(1.6rem, 10px + 2.4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 28px;
  word-break: keep-all;
}

.lp-why__subtext {
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.3;
  margin: 0 0 clamp(24px, 10.84px + 3.097vw, 48px);
  transition-delay: 0.1s;
}

.lp-why__icons {
  display: flex;
  gap: 20px;
  transition-delay: 0.2s;
}

.lp-why__icon-btn {
  width: clamp(48px, 30.45px + 4.129vw, 80px);
  height: clamp(48px, 30.45px + 4.129vw, 80px);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: default;
  transition: transform 0.2s ease-out;
}

.lp-why__icon-btn img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.lp-why__icon-btn:hover {
  transform: translateY(-4px);
}

.lp-why__feature {
  position: relative;
  padding-left: 4px;
  transition-delay: 0.3s;
}

.lp-why__feature-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 1px;
  height: clamp(36px, 0.90px + 8.258vw, 100px);
  background: var(--lp-color-gray-400);
  margin: clamp(10px, 4.52px + 1.290vw, 20px) 0;
  margin-left: clamp(8px, 1.42px + 1.548vw, 20px);
}

.lp-why__feature-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: clamp(26px, 11.74px + 3.355vw, 52px);
  margin-bottom: clamp(10px, 6.71px + 0.774vw, 16px);
}

.lp-why__feature-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 17.42px + 1.548vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-why__feature-desc {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.3;
  max-width: 360px;
}

.lp-why__image img {
  display: block;
  width: clamp(380px, 255.52px + 29.29vw, 607px);
  max-width: none;
  height: auto;
  margin-top: clamp(0px, -16.45px + 3.871vw, 30px);
  margin-left: clamp(-100px, 109.68px + -25.806vw, 0px);
  transition: transform 0.25s ease-out;
}

.lp-why__image:hover img {
  transform: scale(1.04);
}

.lp-why__upgrade {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-why__upgrade-image {
  flex: 0 0 50%;
  overflow: hidden;
  align-self: flex-end;
}

.lp-why__upgrade-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease-out;
}

.lp-why__upgrade-image:hover img {
  transform: scale(1.04);
}

.lp-why__upgrade-content {
  flex: 1;
  text-align: right;
  transition-delay: 0.2s;
}

.lp-why__upgrade-icon {
  display: block;
  width: auto;
  height: clamp(24px, 13.03px + 2.581vw, 44px);
  margin: 0 0 16px auto;
}

.lp-why__upgrade-title {
  font-size: clamp(1.5rem, 17.42px + 1.548vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-why__upgrade-desc {
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.3;
  max-width: 17em;
  margin-left: auto;
}

.lp-why__process {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-why__process-content {
  flex: 1;
  text-align: left;
  transition-delay: 0.2s;
}

.lp-why__process-icon {
  display: block;
  width: auto;
  height: clamp(24px, 13.03px + 2.581vw, 44px);
  margin: 0 0 16px;
}

.lp-why__process-title {
  font-size: clamp(1.5rem, 17.42px + 1.548vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-why__process-desc {
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.3;
  max-width: 17em;
}

.lp-why__process-image {
  flex: 0 0 42%;
  overflow: hidden;
  align-self: flex-end;
}

.lp-why__process-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.25s ease-out;
}

.lp-why__process-image:hover img {
  transform: scale(1.04);
}

.lp-why__network {
  width: 90%;
  margin: 32px auto 0;
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-why__network-icon {
  display: block;
  width: auto;
  height: clamp(24px, 13.03px + 2.581vw, 44px);
  margin: 0 auto 16px;
}

.lp-why__network-title {
  font-size: clamp(1.5rem, 17.42px + 1.548vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-why__network-desc {
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.3;
  max-width: 23em;
  margin: 0 auto;
}

.lp-why__network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.lp-why__network-item {
  margin: 0;
  overflow: hidden;
}

.lp-why__network-item img {
  display: block;
  width: 100%;
  aspect-ratio: 998 / 1060;
  object-fit: contain;
  background-color: var(--lp-color-gray-50);
  transition: transform 0.25s ease-out;
}

.lp-why__network-item:nth-child(2) img {
  object-position: top;
}

.lp-why__network-item:nth-child(3) img {
  object-position: bottom;
}

.lp-why__network-item:hover img {
  transform: scale(1.04);
}

.lp-why__network-item figcaption {
  margin-top: 16px;
  font-size: clamp(1rem, 13.37px + 0.619vw, 1.3rem);
  font-weight: 600;
}

.lp-why__conclusion {
  width: 100%;
  margin: 64px auto 0;
  text-align: center;
}

.lp-why__conclusion-intro {
  margin-bottom: 48px;
}

.lp-why__conclusion-title {
  font-size: clamp(1.6rem, 14.84px + 3.097vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 24px;
  word-break: keep-all;
}

.lp-why__conclusion-desc {
  font-size: clamp(0.95rem, 13px + 0.619vw, 1.15rem);
  font-weight: 400;
  color: var(--lp-color-gray-600);
  line-height: 1.6;
  margin: 0 auto 16px;
  padding: 0 16px;
  word-break: keep-all;
  max-width: 38em;
}

.lp-why__conclusion-desc.mt-2 {
  margin-top: 16px;
}

.lp-why__conclusion-image {
  margin-bottom: 0;
  overflow: hidden;
}

.lp-why__conclusion-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
  transition: transform 0.25s ease-out;
}

.lp-why__conclusion-image:hover img {
  transform: scale(1.04);
}

.lp-why__conclusion-cta {
  background-color: #04172B;
  color: var(--lp-color-white);
  text-align: center;
  max-width: var(--lp-container);
  padding: 72px 24px;
  margin: -4px auto 0;
}

.lp-why__conclusion-cta-logo img {
  height: clamp(35px, 5vw, 55px);
  width: auto;
  margin: 0 auto 16px;
}

.lp-why__conclusion-cta-subtitle {
  font-size: clamp(0.7rem, 0.9rem, 1rem);
  letter-spacing: 0.5em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
}

.lp-why__conclusion-cta-title {
  font-size: clamp(1.4rem, 13px + 1.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 48px;
  word-break: keep-all;
  padding: 0 16px;
}

.lp-why__conclusion-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  background-color: var(--lp-color-blue);
  color: var(--lp-color-white);
  padding: clamp(12px, 3vw, 16px) clamp(24px, 5vw, 40px);
  border-radius: 999px;
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.15rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 30px;
  max-width: 100%;
  word-break: keep-all;
}

.lp-why__conclusion-cta-button:hover {
  background-color: #176BCA;
  transform: translateY(-2px);
}

.lp-why__conclusion-cta-button img.cta-arrow {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.lp-why__conclusion-cta-note {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: var(--lp-color-cyan);
  font-weight: 400;
  word-break: keep-all;
  margin: 0;
}

/* ── 반응형 (TimBot 기존 브레이크포인트: 1200/1024/900/768/480) ── */
@media (max-width: 1024px) {
  .lp-hero__title {
    font-size: 2.25rem;
  }
}

@media (max-width: 900px) {
  .lp-header__nav {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .lp-header__cta {
    display: none;
  }

  .lp-header__nav {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 24px 20px;
    gap: 4px;
    border-radius: 0 0 24px 24px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  }

  .lp-header__nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .lp-header__nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .lp-header__nav li:last-child {
    border-bottom: none;
  }

  .lp-header__nav-cta {
    display: block;
  }

  .lp-header__nav-cta a {
    color: var(--lp-color-blue);
    font-weight: 700;
  }

  .lp-header__nav a {
    display: block;
    padding: 14px 0;
    text-align: center;
    border-radius: 12px;
    transition: color 0.15s ease-out, background 0.15s ease-out;
  }

  .lp-header__nav a::after {
    display: none;
  }

  .lp-header__nav a:active {
    background: rgba(34, 133, 240, 0.1);
    color: var(--lp-color-blue);
  }

  .lp-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .lp-header__mobile-toggle {
    display: block;
  }

  .lp-hero {
    padding: 40px 0 56px;
  }

  .lp-hero__title {
    font-size: 1.75rem;
  }

  .lp-hero__subtext {
    font-size: 1rem;
  }

}

@media (max-width: 767px) {
  .lp-why__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .lp-why__icons {
    justify-content: center;
  }

  .lp-why__feature {
    padding-left: 0;
  }

  .lp-why__feature-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__feature-line {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why::before {
    display: none;
  }

  .lp-why__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .lp-why__image img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

}

@media (max-width: 767px) {
  .lp-why__upgrade {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }

  .lp-why__upgrade-content {
    text-align: center;
  }

  .lp-why__upgrade-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__upgrade-desc {
    max-width: 17em;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__process {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }

  .lp-why__process-content {
    text-align: center;
  }

  .lp-why__process-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__process-desc {
    max-width: 17em;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-why__network-desc {
    max-width: 17em;
  }

  .lp-why__network-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .lp-hero__title {
    font-size: 1.5rem;
  }

  .lp-hero__badge {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

.lp-scroll-top {
  position: fixed;
  right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  bottom: 36px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.35);
  color: var(--lp-color-gray-800);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-scroll-top.on-dark {
  color: var(--lp-color-white);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

.lp-scroll-top.on-dark:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lp-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-scroll-top:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255,255,255,0.5);
}

.lp-scroll-top svg {
  flex-shrink: 0;
}
