:root {
  --lp-bg: #05070d;
  --lp-bg-2: #080b14;
  --lp-panel: rgba(13, 17, 28, 0.78);
  --lp-panel-strong: #0e1320;
  --lp-ink: #f7fbff;
  --lp-muted: #a8b3c7;
  --lp-soft: #d7deea;
  --lp-line: rgba(255, 255, 255, 0.11);
  --lp-green: #28f29c;
  --lp-green-2: #89ffcb;
  --lp-blue: #4da3ff;
  --lp-violet: #875cff;
  --lp-rose: #ff5bbd;
  --lp-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --lp-radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--lp-ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(40, 242, 156, 0.24), transparent 30rem),
    radial-gradient(circle at 86% 4%, rgba(135, 92, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 55% 42%, rgba(77, 163, 255, 0.13), transparent 42rem),
    linear-gradient(180deg, #060912 0%, #090d17 44%, #05070d 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, transparent 0, rgba(5, 7, 13, 0.7) 72%);
}

a {
  color: inherit;
}

.lp-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.7);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.lp-brand,
.lp-nav {
  display: flex;
  align-items: center;
}

.lp-brand {
  flex: 0 0 auto;
  width: 158px;
  height: 44px;
  color: #ffffff;
  text-decoration: none;
}

.lp-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-nav {
  gap: 26px;
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 700;
}

.lp-nav a,
.lp-text-link {
  text-decoration: none;
  transition: color 170ms ease;
}

.lp-nav a:hover,
.lp-text-link:hover {
  color: var(--lp-green);
}

.lp-hero,
.lp-section,
.lp-split,
.lp-compare,
.lp-faq,
.lp-legal-page,
.lp-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 74px 0 76px;
}

.lp-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(40, 242, 156, 0.25);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(40, 242, 156, 0.12), rgba(77, 163, 255, 0.08));
  color: var(--lp-green-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-hero h1,
.lp-section__heading h2,
.lp-split h2 {
  margin: 18px 0 0;
  color: #ffffff;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.lp-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.8vw, 68px);
}

.lp-hero h1::after {
  content: "";
  display: block;
  width: min(380px, 80%);
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lp-green), var(--lp-blue), transparent);
  box-shadow: 0 0 32px rgba(40, 242, 156, 0.42);
}

.lp-hero p,
.lp-section__heading p,
.lp-split p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--lp-muted);
  font-size: 16px;
  line-height: 1.68;
}

.lp-hero__actions,
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-green), #46d6ff);
  color: #05110b;
  box-shadow: 0 20px 46px rgba(40, 242, 156, 0.24);
  font-weight: 900;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.lp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(40, 242, 156, 0.32);
}

.lp-button--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.lp-trust span {
  padding: 7px 0;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 800;
}

.lp-trust span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 18px rgba(40, 242, 156, 0.82);
}

.lp-hero__visual {
  perspective: 1200px;
}

.lp-dashboard,
.lp-checkout-mock {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--lp-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(9, 13, 23, 0.9);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(18px);
}

.lp-dashboard {
  padding: 18px;
  transform: rotateY(-8deg) rotateX(4deg);
  animation: lp-float 7s ease-in-out infinite;
  overflow: visible;
}

.lp-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(40, 242, 156, 0.22), transparent 18rem),
    radial-gradient(circle at 20% 95%, rgba(135, 92, 255, 0.2), transparent 18rem);
  pointer-events: none;
}

.lp-dashboard::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 26%;
  height: 210px;
  background: linear-gradient(90deg, rgba(40, 242, 156, 0.4), rgba(77, 163, 255, 0.25), rgba(135, 92, 255, 0.3));
  filter: blur(34px);
}

@keyframes lp-float {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-12px); }
}

.lp-dashboard__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-dashboard__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.lp-dashboard__bar span:first-child {
  background: #ff5f6d;
}

.lp-dashboard__bar span:nth-child(2) {
  background: #ffd166;
}

.lp-dashboard__bar span:nth-child(3) {
  background: var(--lp-green);
}

.lp-dashboard__bar strong {
  margin-left: auto;
}

.lp-metric-grid,
.lp-feature-grid,
.lp-flow {
  display: grid;
  gap: 16px;
}

.lp-metric-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
}

.lp-metric-grid div,
.lp-feature-grid article,
.lp-flow article {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-metric-grid div {
  padding: 16px;
}

.lp-metric-grid span,
.lp-metric-grid small {
  display: block;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 800;
}

.lp-metric-grid strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.lp-metric-grid small {
  margin-top: 6px;
  color: var(--lp-green-2);
}

.lp-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 184px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(2, 5, 10, 0.72);
}

.lp-chart i {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--lp-green), var(--lp-blue));
  box-shadow: 0 0 24px rgba(40, 242, 156, 0.2);
  animation: lp-bars 1.8s ease both;
}

@keyframes lp-bars {
  from { transform: scaleY(0.35); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

.lp-sale-card {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(40, 242, 156, 0.2);
  border-radius: 20px;
  background: rgba(7, 15, 14, 0.86);
}

.lp-sale-card span,
.lp-sale-card small {
  display: block;
  color: var(--lp-muted);
  font-weight: 800;
}

.lp-sale-card strong {
  display: block;
  margin: 5px 0;
  color: #ffffff;
  font-size: 18px;
}

.lp-floating-sales {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.lp-floating-sale {
  position: absolute;
  min-width: 178px;
  padding: 12px 14px;
  border: 1px solid rgba(40, 242, 156, 0.28);
  border-radius: 18px;
  background: rgba(5, 12, 14, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 34px rgba(40, 242, 156, 0.14);
  backdrop-filter: blur(14px);
  animation: lp-sale-float 6s ease-in-out infinite;
}

.lp-floating-sale span,
.lp-floating-sale small {
  display: block;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 900;
}

.lp-floating-sale strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.lp-floating-sale::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 18px rgba(40, 242, 156, 0.82);
}

.lp-floating-sale--one {
  top: 68px;
  left: -56px;
}

.lp-floating-sale--two {
  top: 172px;
  right: -48px;
  animation-delay: -1.8s;
}

.lp-floating-sale--three {
  right: 44px;
  bottom: -34px;
  animation-delay: -3.2s;
}

@keyframes lp-sale-float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.92;
  }
  50% {
    transform: translate3d(0, -12px, 0);
    opacity: 1;
  }
}

.lp-marquee {
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.035);
}

.lp-marquee__track {
  display: flex;
  width: 200%;
  animation: lp-marquee 22s linear infinite;
  will-change: transform;
}

.lp-marquee__group {
  display: flex;
  flex: 0 0 50%;
  min-width: 50%;
  gap: 12px;
  align-items: center;
  justify-content: space-around;
  padding: 0 6px;
}

.lp-marquee span {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lp-soft);
  font-size: 13px;
  font-weight: 900;
}

@keyframes lp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-section {
  padding: 88px 0;
}

.lp-section__heading {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lp-section__heading h2,
.lp-split h2 {
  font-size: clamp(30px, 4.4vw, 50px);
}

.lp-feature-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.lp-feature-grid article {
  min-height: 242px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lp-feature-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(40, 242, 156, 0.32);
  background: rgba(255, 255, 255, 0.09);
}

.lp-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(40, 242, 156, 0.95), rgba(77, 163, 255, 0.95));
  color: #04100b;
  font-size: 12px;
  font-weight: 900;
}

.lp-feature-grid h3,
.lp-flow h3 {
  margin: 20px 0 9px;
  color: #ffffff;
  font-size: 18px;
}

.lp-feature-grid p,
.lp-flow p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.64;
}

.lp-hero__content,
.lp-split > div:first-child {
  text-align: left;
}

.lp-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
  padding: 88px 0;
}

.lp-check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lp-check-list li {
  color: var(--lp-soft);
  font-weight: 800;
}

.lp-check-list li::before {
  content: "✓";
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  margin-right: 9px;
  border-radius: 50%;
  background: rgba(40, 242, 156, 0.16);
  color: var(--lp-green);
  font-size: 13px;
}

.lp-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--lp-green-2);
  font-weight: 900;
}

.lp-checkout-mock {
  padding: 24px;
}

.lp-checkout-mock__product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.lp-checkout-mock__product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
}

.lp-checkout-mock__product strong,
.lp-checkout-mock__product span,
.lp-checkout-mock label span {
  display: block;
}

.lp-checkout-mock__product strong,
.lp-checkout-mock label span {
  color: #ffffff;
}

.lp-checkout-mock__product span,
.lp-checkout-mock label {
  color: var(--lp-muted);
}

.lp-checkout-mock label {
  display: block;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 900;
}

.lp-checkout-mock label span {
  margin-top: 7px;
  font-size: 15px;
}

.lp-pay-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.lp-pay-row span {
  padding: 13px 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(40, 242, 156, 0.16), rgba(77, 163, 255, 0.12));
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.lp-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(40, 242, 156, 0.24), rgba(77, 163, 255, 0.18), rgba(135, 92, 255, 0.16));
}

.lp-total span {
  color: var(--lp-soft);
  font-weight: 900;
}

.lp-total strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.lp-section--dark {
  width: 100%;
  max-width: none;
  padding: 88px max(16px, calc((100% - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(40, 242, 156, 0.17), transparent 28rem),
    linear-gradient(180deg, #070b13, #04060b);
}

.lp-flow {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
}

.lp-flow article {
  min-height: 202px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.lp-flow article span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-green);
  color: #04100b;
  font-weight: 900;
}

.lp-compare {
  padding: 88px 0;
}

.lp-compare__table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--lp-line);
  border-radius: 26px;
  background: var(--lp-line);
}

.lp-compare__table div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.lp-compare__table strong,
.lp-compare__table span {
  display: block;
}

.lp-compare__table strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
}

.lp-compare__table span {
  color: var(--lp-muted);
  line-height: 1.68;
}

.lp-faq {
  padding: 76px 0 106px;
  text-align: center;
}

.lp-faq details {
  max-width: 860px;
  margin: 0 auto;
  padding: 22px 0;
  border-bottom: 1px solid var(--lp-line);
}

.lp-faq summary {
  cursor: pointer;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.lp-faq p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.lp-conversion {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 104px;
  text-align: center;
}

.lp-conversion__inner {
  position: relative;
  overflow: hidden;
  padding: 54px 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(40, 242, 156, 0.22), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(77, 163, 255, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--lp-shadow);
}

.lp-conversion__inner h2 {
  max-width: 860px;
  margin: 18px auto 0;
  color: #ffffff;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1;
}

.lp-conversion__inner p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.68;
}

.lp-conversion__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 30px auto;
}

.lp-conversion__stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(5, 7, 13, 0.36);
}

.lp-conversion__stats strong,
.lp-conversion__stats span {
  display: block;
}

.lp-conversion__stats strong {
  color: var(--lp-green-2);
  font-size: 13px;
  font-weight: 900;
}

.lp-conversion__stats span {
  margin-top: 8px;
  color: var(--lp-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.lp-system,
.lp-insights {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.lp-system__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.lp-system__grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lp-system__grid article::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% 20%;
  height: 120px;
  background: linear-gradient(90deg, rgba(40, 242, 156, 0.26), rgba(77, 163, 255, 0.16));
  filter: blur(24px);
}

.lp-system__grid strong {
  color: var(--lp-green-2);
  font-size: 12px;
  font-weight: 900;
}

.lp-system__grid h3 {
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 18px;
}

.lp-system__grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.64;
}

.lp-insights {
  padding-top: 86px;
}

.lp-insights__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(40, 242, 156, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--lp-shadow);
}

.lp-insights__panel h2 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.lp-insights__panel p {
  margin: 18px 0 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.68;
}

.lp-insights__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-insights__list span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.38);
  color: var(--lp-soft);
  font-size: 13px;
  font-weight: 900;
}

.lp-insights__list span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lp-green);
}

.lp-faq code {
  padding: 2px 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-green-2);
}

.lp-footer {
  display: block;
  padding: 30px 0 44px;
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 800;
}

.lp-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
}

.lp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__logo {
  width: 132px;
  height: 38px;
  object-fit: contain;
}

.lp-footer a {
  text-decoration: none;
}

.lp-footer__legal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-footer__legal a {
  display: block;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.lp-footer__legal a:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 242, 156, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.lp-footer__legal strong,
.lp-footer__legal span {
  display: block;
}

.lp-footer__legal strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lp-footer__legal span {
  margin-top: 9px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.58;
}

.lp-footer__copy {
  margin: 18px 0 0;
  color: #7e8aa0;
  font-size: 12px;
  text-align: center;
}

.lp-legal-page {
  padding: 72px 0 104px;
}

.lp-legal-hero {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.lp-legal-hero .lp-text-link {
  margin: 0 0 24px;
}

.lp-legal-hero h1 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.lp-legal-hero p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--lp-muted);
  font-size: 16px;
  line-height: 1.68;
}

.lp-legal-hero small {
  display: inline-flex;
  margin-top: 20px;
  color: var(--lp-soft);
  font-size: 12px;
  font-weight: 900;
}

.lp-legal-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 42px auto 0;
}

.lp-legal-content article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-legal-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.25;
}

.lp-legal-content p {
  margin: 12px 0 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .lp-header {
    top: 10px;
    border-radius: 22px;
  }

  .lp-nav {
    display: none;
  }

  .lp-hero,
  .lp-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lp-dashboard {
    transform: none;
  }

  .lp-feature-grid,
  .lp-flow,
  .lp-system__grid,
  .lp-footer__legal {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-dashboard {
    overflow: hidden;
  }

  .lp-floating-sale--one {
    left: 14px;
  }

  .lp-floating-sale--two {
    right: 14px;
  }

  .lp-insights__panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-header,
  .lp-hero,
  .lp-section,
  .lp-split,
  .lp-compare,
  .lp-faq,
  .lp-legal-page,
  .lp-footer,
  .lp-system,
  .lp-insights,
  .lp-conversion {
    width: min(100% - 24px, 1180px);
  }

  .lp-header {
    margin-top: 10px;
  }

  .lp-hero {
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .lp-hero h1 {
    font-size: 36px;
  }

  .lp-hero p,
  .lp-section__heading p,
  .lp-split p {
    font-size: 15px;
  }

  .lp-hero__actions,
  .lp-trust,
  .lp-footer__top {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-button {
    width: 100%;
  }

  .lp-metric-grid,
  .lp-feature-grid,
  .lp-flow,
  .lp-compare__table,
  .lp-pay-row,
  .lp-system__grid,
  .lp-insights__list,
  .lp-conversion__stats,
  .lp-footer__legal {
    grid-template-columns: 1fr;
  }

  .lp-section,
  .lp-split,
  .lp-compare,
  .lp-section--dark,
  .lp-system,
  .lp-insights {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .lp-conversion {
    padding-bottom: 72px;
  }

  .lp-conversion__inner {
    padding: 34px 18px;
  }

  .lp-brand {
    width: 128px;
    height: 38px;
  }

  .lp-insights__panel {
    padding: 22px;
  }

  .lp-floating-sales {
    display: none;
  }
}
