:root {
  --lp-bg: #eef3f8;
  --lp-bg-deep: #dfe9f2;
  --lp-surface: #ffffff;
  --lp-text: #12253a;
  --lp-text-soft: #4b667f;
  --lp-brand-deep: #0a3a86;
  --lp-brand: #0f56c7;
  --lp-brand-strong: #1466cc;
  --lp-brand-bright: #2f8dea;
  --lp-line: #d2e0ef;
  --lp-surface-2: #f4f8fc;
  --lp-brand-soft: #e8f1ff;
  --lp-focus: #4d9bf6;
  --lp-danger: #6e1c26;
  --lp-danger-bg: #ffe8ed;
  --lp-radius-sm: 0.75rem;
  --lp-radius-md: 1.1rem;
  --lp-radius-lg: 1.7rem;
  --lp-shadow-sm: 0 24px 50px -32px rgba(10, 45, 94, 0.22);
  --lp-shadow-lg: 0 44px 90px -40px rgba(7, 34, 76, 0.34);
  --lp-speed: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.layout,
.body {
  min-height: 100vh;
}

.body {
  color: var(--lp-text);
  background:
    radial-gradient(circle at -4% 4%, rgba(35, 143, 237, 0.26), transparent 37%),
    radial-gradient(circle at 98% 0%, rgba(74, 220, 218, 0.16), transparent 35%),
    linear-gradient(180deg, #f8fcff 0%, var(--lp-bg) 58%, var(--lp-bg-deep) 100%);
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  line-height: 1.58;
  position: relative;
  display: flex;
  flex-direction: column;
}

.body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(84, 122, 173, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(84, 122, 173, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 14%, black 24%, transparent 76%);
}

.body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 44%,
    rgba(255, 255, 255, 0.35) 48%,
    transparent 52%
  );
  opacity: 0.4;
  animation: lpSheen 22s linear infinite;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(175, 199, 232, 0.5);
}

.main,
.nav,
.footer-content {
  width: min(1180px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.main {
  flex: 1;
  padding: 2.2rem 0 4.4rem;
}

.nav {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem 0;
  position: relative;
  flex-wrap: wrap;
}

.nav-brand {
  text-decoration: none;
  color: var(--lp-text);
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
  font-size: 1.34rem;
  font-weight: 700;
}

.nav-toggle {
  border: 1px solid var(--lp-line);
  background: #fff;
  color: var(--lp-text);
  min-height: 2.75rem;
  min-width: 2.95rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle__line {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-list {
  list-style: none;
  position: fixed;
  top: 72px;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 120;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d8e5f8;
  border-radius: 1rem;
  box-shadow: var(--lp-shadow-lg);
  padding: 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-list--open {
  display: flex;
}

.nav-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--lp-speed),
    background-color var(--lp-speed),
    color var(--lp-speed);
}

.nav-link--ghost {
  color: var(--lp-text-soft);
  border: 1px solid var(--lp-line);
  background: #fff;
}

.nav-link--ghost:hover {
  color: var(--lp-brand-strong);
  background: var(--lp-brand-soft);
}

.nav-link--accent {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(130deg, #0f56c7, #2489e8);
  box-shadow: var(--lp-shadow-sm);
}

.nav-link--accent:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.lp-hero,
.lp-trust,
.lp-stats,
.lp-section,
.lp-final,
.lp-page,
.lp-auth {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-surface);
  box-shadow: var(--lp-shadow-sm);
}

.lp-kicker {
  display: inline-flex;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: var(--lp-brand-strong);
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

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

.lp-actions--spaced {
  margin-top: 1.55rem;
}

.lp-actions--cta-gap {
  margin-top: 1.9rem;
}

.lp-actions--stack-mobile .lp-link {
  width: 100%;
  text-align: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.75rem 1.05rem;
  border-radius: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    background-color var(--lp-speed),
    color var(--lp-speed);
  position: relative;
  overflow: hidden;
}

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(140deg, #0f56c7, #2f8dea 85%);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 24%,
    rgba(255, 255, 255, 0.34) 50%,
    transparent 76%
  );
  transform: translateX(-130%);
  animation: lpBtnSheen 4.8s ease-in-out infinite;
}

.lp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-btn--ghost {
  color: var(--lp-text);
  background: #fff;
  border-color: var(--lp-line);
}

.lp-btn--ghost:hover {
  background: var(--lp-brand-soft);
  color: var(--lp-brand-strong);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-link {
  color: var(--lp-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.lp-link:hover {
  text-decoration: underline;
}

.lp-hero {
  display: grid;
  gap: 1.45rem;
  padding: 1.55rem;
  position: relative;
  overflow: hidden;
}

.lp-hero--wide {
  min-height: 23rem;
}

.lp-hero--friend {
  gap: 1.25rem;
}

.lp-hero::after {
  content: '';
  position: absolute;
  width: 19rem;
  height: 19rem;
  right: -10rem;
  top: -11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 149, 247, 0.28), rgba(56, 149, 247, 0));
  pointer-events: none;
  animation: lpFloatOrb 9s ease-in-out infinite;
}

.lp-hero::before {
  content: '';
  position: absolute;
  left: -7rem;
  bottom: -9rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 160, 213, 0.2), rgba(16, 160, 213, 0));
  pointer-events: none;
  animation: lpFloatOrb 11s ease-in-out infinite reverse;
}

.lp-hero__title,
.lp-section__title,
.lp-auth__title,
.lp-final__title {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.lp-hero__title {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 7.1vw, 3.45rem);
}

.lp-hero__lead,
.lp-page__lead,
.lp-final__lead,
.lp-auth__lead,
.lp-auth__aside-text {
  margin-top: 0.8rem;
  color: var(--lp-text-soft);
  line-height: 1.68;
  max-width: 66ch;
  font-size: 1.02rem;
}

.lp-points {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--lp-text-soft);
}

.lp-points li {
  position: relative;
  padding-left: 1.1rem;
}

.lp-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--lp-brand);
}

.lp-hero__panel {
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f9fbff, #f0f6ff);
  padding: 1.35rem;
  animation: lpCardBob 8s ease-in-out infinite;
}

.lp-hero__panel--friend {
  border-color: #d8e7fb;
  background: linear-gradient(180deg, #f9fbff, #eef5ff);
}

.lp-panel__title {
  font-weight: 700;
  color: #1a3e76;
}

.lp-panel__grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.lp-panel__grid--friend {
  gap: 0.75rem;
}

.lp-mini-card {
  padding: 0.95rem;
  border: 1px solid #cee0fb;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.85);
  min-height: 5.2rem;
}

.lp-mini-card__value {
  display: block;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: #19498e;
}

.lp-mini-card__label {
  color: var(--lp-text-soft);
  font-size: 0.92rem;
}

.lp-trust {
  margin-top: 1.45rem;
  padding: 1.3rem;
}

.lp-trust--compact {
  margin-top: 0;
  height: 100%;
}

.lp-trust__title {
  text-align: center;
  font-weight: 700;
  color: #223f73;
}

.lp-trust__row {
  margin-top: 0.75rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.lp-trust__row--tight {
  margin-top: 0.95rem;
}

.lp-chip {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #f2f7ff;
  border: 1px solid #d6e5fb;
  color: #365f97;
  font-weight: 700;
  transition:
    transform var(--lp-speed),
    background-color var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-chip:hover {
  transform: translateY(-2px);
  background: #ebf5ff;
  border-color: #bdd7f5;
}

.lp-stats {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.lp-stats--compact {
  margin-top: 0;
  align-content: start;
  height: 100%;
}

.lp-layout-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 1.45rem;
}

.lp-layout-grid--mosaic,
.lp-layout-grid--split {
  align-items: stretch;
}

.lp-story {
  margin-top: 1.45rem;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  background: linear-gradient(140deg, rgba(18, 114, 221, 0.08), rgba(47, 180, 183, 0.08)), #ffffff;
  box-shadow: var(--lp-shadow-sm);
  padding: 1.35rem;
}

.lp-story--side {
  margin-top: 0;
  height: 100%;
}

.lp-story__intro {
  max-width: 72ch;
}

.lp-story__rail {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.lp-story__rail--stack {
  align-content: start;
}

.lp-story__event {
  border: 1px solid #c7ddef;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-story__event--roomy {
  min-height: 11.25rem;
}

.lp-story__event:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a8c7e3;
}

.lp-story__event span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c65bc;
}

.lp-story__event h3 {
  margin-top: 0.35rem;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

.lp-story__event p {
  margin-top: 0.35rem;
  color: var(--lp-text-soft);
}

.lp-stat {
  border: 1px solid #d4e2f7;
  border-radius: var(--lp-radius-md);
  padding: 1.05rem;
  background: linear-gradient(180deg, #f9fcff, #f0f6ff);
  min-height: 7.25rem;
}

.lp-stat__value {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  color: #19498e;
}

.lp-stat__label {
  color: var(--lp-text-soft);
  font-size: 0.95rem;
}

.lp-section,
.lp-page,
.lp-final {
  margin-top: 1.45rem;
  padding: 1.55rem;
}

.lp-section--benefits,
.lp-section--features,
.lp-section--steps,
.lp-section--results,
.lp-section--pricing,
.lp-section--faq {
  margin-top: 1.45rem;
  padding: 1.4rem;
}

.lp-section--flush {
  margin-top: 0;
  height: 100%;
}

.lp-section--soft {
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.lp-section__head {
  margin-bottom: 1.05rem;
}

.lp-section__title,
.lp-auth__title,
.lp-final__title {
  margin-top: 0.4rem;
  font-size: clamp(1.65rem, 6.4vw, 2.55rem);
}

.lp-grid {
  display: grid;
  gap: 0.95rem;
}

.lp-grid--steps,
.lp-grid--results,
.lp-grid--pricing {
  display: grid;
  gap: 0.9rem;
}

.lp-grid--features-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid--about-inline .lp-card {
  background: linear-gradient(180deg, #ffffff, #f8fcff);
}

.lp-card {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.3rem;
  min-width: 0;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-card--roomy {
  min-height: 9.2rem;
}

.lp-card--benefit,
.lp-card--feature,
.lp-card--step,
.lp-card--testimonial,
.lp-card--price {
  height: 100%;
}

.lp-card--benefit,
.lp-card--feature {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.lp-card--step {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.lp-card--testimonial {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.lp-card--price {
  display: grid;
  align-content: start;
  gap: 0.2rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.lp-card--price-featured {
  border-color: #b9d6fb;
  box-shadow: var(--lp-shadow-lg);
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.lp-price-card__eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-brand-strong);
}

.lp-price-card__title {
  margin-top: 0.35rem;
}

.lp-price-card__lead {
  margin-top: 0.45rem;
}

.lp-price-card__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
  color: var(--lp-text-soft);
}

.lp-price-card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.lp-price-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--lp-brand);
}

.lp-card--price .lp-btn {
  margin-top: auto;
}

.lp-kicker--step {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lp-brand-strong);
}

.lp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a7c8e6;
}

.lp-card h2,
.lp-card h3,
.lp-timeline__item h3,
.lp-walkthrough__item h2 {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  letter-spacing: -0.015em;
  font-size: 1.26rem;
}

.lp-card p,
.lp-timeline__item p,
.lp-walkthrough__item p {
  margin-top: 0.4rem;
  color: var(--lp-text-soft);
  line-height: 1.65;
}

.lp-faq {
  display: grid;
  gap: 0.8rem;
}

.lp-faq__item {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 0.95rem 1rem;
}

.lp-faq__question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-faq__question::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--lp-brand-strong);
}

.lp-faq__question::-webkit-details-marker {
  display: none;
}

.lp-faq__item[open] {
  box-shadow: var(--lp-shadow-sm);
}

.lp-faq__item[open] .lp-faq__question::after {
  content: '−';
}

.lp-faq__answer-wrap {
  margin-top: 0.75rem;
  color: var(--lp-text-soft);
}

.lp-faq__answer {
  margin-top: 0;
  color: inherit;
}

.lp-final--friend {
  margin-top: 1.45rem;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  text-align: center;
}

.lp-final--friend .lp-final__lead {
  margin-inline: auto;
}

.lp-timeline {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.lp-timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.25rem;
  min-height: 8rem;
  min-width: 0;
}

.lp-timeline__index {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--lp-brand-strong);
  background: var(--lp-brand-soft);
}

.lp-walkthrough {
  display: grid;
  gap: 0.75rem;
}

.lp-walkthrough__item {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-md);
  background: #fff;
  padding: 1.15rem;
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    border-color var(--lp-speed);
}

.lp-walkthrough__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
  border-color: #a7c8e6;
}

.lp-walkthrough__step {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #235ebe;
}

.lp-page--404 {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}

.lp-auth {
  padding: 1.45rem;
  display: grid;
  gap: 1.25rem;
}

.lp-auth__form-wrap {
  order: 1;
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.45rem;
  min-width: 0;
}

.lp-auth__aside {
  order: 2;
  border: 1px solid var(--lp-line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #f8fbff, #f1f7ff);
  padding: 1.45rem;
  min-width: 0;
}

.lp-auth--login .lp-auth__aside,
.lp-auth--register .lp-auth__aside {
  order: 2;
}

.lp-auth--login .lp-auth__form-wrap,
.lp-auth--register .lp-auth__form-wrap {
  order: 1;
}

.lp-auth__aside-title {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.35rem, 4.4vw, 1.92rem);
  letter-spacing: -0.02em;
}

.lp-auth__checks,
.lp-auth__steps {
  margin-top: 0.8rem;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.lp-auth__checks li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--lp-text-soft);
}

.lp-auth__checks li::before {
  content: '';
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  left: 0;
  top: 0.62rem;
  background: var(--lp-brand);
}

.lp-auth__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--lp-text-soft);
}

.lp-auth__steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-brand-soft);
  color: var(--lp-brand-strong);
  font-weight: 800;
  font-size: 0.78rem;
}

.lp-auth__aside .lp-btn {
  margin-top: 0.95rem;
}

.lp-auth__form {
  display: grid;
  gap: 0.75rem;
}

.form-group {
  display: grid;
  gap: 0.33rem;
}

.form-group--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-label {
  color: #31517d;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-label--required::after {
  content: '*';
  margin-left: 0.2rem;
  color: #b53d20;
}

.form-input {
  width: 100%;
  min-height: 2.95rem;
  border-radius: 0.8rem;
  border: 1px solid #c0d4f1;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--lp-text);
  background: #fbfdff;
  outline: none;
  transition:
    border-color var(--lp-speed),
    box-shadow var(--lp-speed);
}

.form-input:focus {
  border-color: var(--lp-focus);
  box-shadow: 0 0 0 3px rgba(82, 161, 255, 0.22);
}

.form-button {
  width: 100%;
  min-height: 2.95rem;
  border: 0;
  border-radius: 0.8rem;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: linear-gradient(135deg, #0f56c7, #2f8dea);
  cursor: pointer;
  transition:
    transform var(--lp-speed),
    filter var(--lp-speed);
}

.form-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.form-button:disabled {
  cursor: not-allowed;
  transform: none;
  filter: saturate(0.85) brightness(0.95);
}

.auth-footer,
.auth-link {
  font-size: 0.95rem;
}

.auth-footer {
  color: var(--lp-text-soft);
}

.auth-link {
  color: var(--lp-brand-strong);
  font-weight: 700;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.message,
.error {
  border-radius: 0.8rem;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.message {
  border: 1px solid #b5d4ff;
  background: #edf5ff;
  color: #244f9a;
}

.error {
  border: 1px solid #d9a9b4;
  background: var(--lp-danger-bg);
  color: var(--lp-danger);
}

.footer {
  margin-top: 1.5rem;
  border-top: 1px solid #cad9ef;
  background: #0e274e;
  color: #d2e0f6;
  padding: 1.7rem 0;
}

.footer-copy {
  text-align: center;
  color: #9fb9e4;
  margin-bottom: 0.7rem;
}

.footer-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.9rem;
}

.footer-link {
  color: #ebf2ff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.reveal-ready .lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lp-delay, 0ms);
}

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

.reveal-ready .lp-reveal .lp-card,
.reveal-ready .lp-reveal .lp-story__event,
.reveal-ready .lp-reveal .lp-timeline__item,
.reveal-ready .lp-reveal .lp-stat,
.reveal-ready .lp-reveal .lp-walkthrough__item,
.reveal-ready .lp-reveal .lp-mini-card,
.reveal-ready .lp-reveal .lp-chip,
.reveal-ready .lp-reveal .lp-auth__form-wrap,
.reveal-ready .lp-reveal .lp-auth__aside,
.reveal-ready .lp-reveal .form-group {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

.reveal-ready .lp-reveal.is-visible .lp-card,
.reveal-ready .lp-reveal.is-visible .lp-story__event,
.reveal-ready .lp-reveal.is-visible .lp-timeline__item,
.reveal-ready .lp-reveal.is-visible .lp-stat,
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item,
.reveal-ready .lp-reveal.is-visible .lp-mini-card,
.reveal-ready .lp-reveal.is-visible .lp-chip,
.reveal-ready .lp-reveal.is-visible .lp-auth__form-wrap,
.reveal-ready .lp-reveal.is-visible .lp-auth__aside,
.reveal-ready .lp-reveal.is-visible .form-group {
  animation: lpCascadeIn 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-story__event:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-mini-card:nth-child(2),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(2) {
  animation-delay: 95ms;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-story__event:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-mini-card:nth-child(3),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(3) {
  animation-delay: 190ms;
}

.reveal-ready .lp-reveal.is-visible .lp-card:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-timeline__item:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-stat:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-walkthrough__item:nth-child(4),
.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(4) {
  animation-delay: 285ms;
}

.reveal-ready .lp-reveal.is-visible .lp-chip:nth-child(5) {
  animation-delay: 360ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(4) {
  animation-delay: 90ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(5) {
  animation-delay: 180ms;
}

.reveal-ready .lp-reveal.is-visible .form-group:nth-child(6) {
  animation-delay: 270ms;
}

.lp-reveal--1 {
  --lp-delay: 80ms;
}

.lp-reveal--2 {
  --lp-delay: 200ms;
}

.lp-reveal--3 {
  --lp-delay: 320ms;
}

.lp-reveal--4 {
  --lp-delay: 440ms;
}

.lp-reveal--5 {
  --lp-delay: 560ms;
}

.lp-reveal--6 {
  --lp-delay: 680ms;
}

.lp-reveal--7 {
  --lp-delay: 780ms;
}

.lp-reveal--8 {
  --lp-delay: 880ms;
}

@media (display-mode: standalone) {
  .nav-item-install {
    display: none;
  }
}

@media (min-width: 768px) {
  .main,
  .nav,
  .footer-content {
    width: min(1200px, calc(100% - 2rem));
  }

  .main {
    padding-top: 2.9rem;
    padding-bottom: 5rem;
  }

  .nav {
    flex-wrap: nowrap;
  }

  .nav-list {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-link {
    width: auto;
    min-height: 2.6rem;
    padding-inline: 0.86rem;
  }

  .lp-btn {
    min-width: 13rem;
  }

  .lp-hero {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2rem;
    gap: 1.6rem;
  }

  .lp-grid--steps,
  .lp-grid--pricing,
  .lp-grid--results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--pricing {
    align-items: stretch;
  }

  .lp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-layout-grid {
    gap: 1.6rem;
  }

  .lp-layout-grid:not(.lp-layout-grid--mosaic):not(.lp-layout-grid--split) {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .lp-layout-grid--mosaic {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .lp-trust__row {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

  .lp-grid--features,
  .lp-grid--about,
  .lp-walkthrough {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--features-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-story {
    padding: 1.65rem;
  }

  .lp-story__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-auth {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 1.4rem;
    align-items: stretch;
  }

  .lp-auth__form-wrap,
  .lp-auth__aside {
    order: initial;
    padding: 1.35rem;
  }

  .lp-page--404 .lp-actions--stack-mobile .lp-link {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .main,
  .nav,
  .footer-content {
    width: min(1240px, calc(100% - 2.5rem));
  }

  .lp-hero,
  .lp-story,
  .lp-section,
  .lp-page,
  .lp-final,
  .lp-auth {
    padding: 2.3rem;
  }

  .lp-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-layout-grid {
    gap: 1.9rem;
  }

  .lp-grid--features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-grid--pricing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-grid--results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid--about-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-story__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-walkthrough {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-auth {
    grid-template-columns: 0.96fr 1.04fr;
  }
}

@media (max-width: 767px) {
  .lp-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .body::after {
    animation: none;
  }

  .lp-hero::before,
  .lp-hero::after,
  .lp-hero__panel,
  .lp-btn--primary::after {
    animation: none;
  }

  .reveal-ready .lp-reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-ready .lp-reveal .lp-card,
  .reveal-ready .lp-reveal .lp-story__event,
  .reveal-ready .lp-reveal .lp-timeline__item,
  .reveal-ready .lp-reveal .lp-stat,
  .reveal-ready .lp-reveal .lp-walkthrough__item,
  .reveal-ready .lp-reveal .lp-mini-card,
  .reveal-ready .lp-reveal .lp-chip,
  .reveal-ready .lp-reveal .lp-auth__form-wrap,
  .reveal-ready .lp-reveal .lp-auth__aside,
  .reveal-ready .lp-reveal .form-group {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .lp-card,
  .lp-story__event,
  .lp-walkthrough__item,
  .lp-btn,
  .nav-link {
    transition: none;
  }
}

@keyframes lpSheen {
  0% {
    transform: translateX(-16%);
  }

  100% {
    transform: translateX(16%);
  }
}

@keyframes lpCascadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lpBtnSheen {
  0%,
  14% {
    transform: translateX(-130%);
  }

  35%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes lpCardBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes lpFloatOrb {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-12px) translateX(6px);
  }
}

.body.page-home {
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 141, 234, 0.12), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(20, 102, 204, 0.14), transparent 26%),
    linear-gradient(180deg, #f6faff 0%, var(--lp-bg) 46%, var(--lp-bg-deep) 100%);
}

.body.page-home::before,
.body.page-home::after {
  display: none;
}

.main--home {
  width: 100%;
  margin: 0;
  padding: 0 0 5rem;
}

.header--home {
  position: sticky;
  top: 0;
  z-index: 140;
  background: rgba(246, 250, 255, 0.84);
  border-bottom: 1px solid rgba(210, 224, 239, 0.8);
  backdrop-filter: blur(18px);
}

.footer--home {
  margin-top: 0;
  padding: 3.5rem 0 2.4rem;
  color: #d5e5fb;
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 141, 234, 0.18), transparent 30%),
    linear-gradient(180deg, #082b64 0%, #0a3a86 100%);
}

.lp-auth,
.lp-page {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 224, 239, 0.92);
  box-shadow: var(--lp-shadow-lg);
}

.lp-page {
  max-width: 860px;
  margin-inline: auto;
}

.lp-page--404 {
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.lp-auth {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 141, 234, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 255, 0.96) 100%);
}

.lp-auth__form-wrap,
.lp-auth__aside {
  border: 1px solid rgba(210, 224, 239, 0.92);
  border-radius: 1.5rem;
  min-width: 0;
}

.lp-auth__form-wrap {
  order: 1;
  padding: 1.5rem 1.15rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px -42px rgba(6, 34, 77, 0.32);
}

.lp-auth__aside {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.15rem;
  color: #eef5ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(131, 210, 255, 0.22), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(47, 141, 234, 0.18), transparent 30%),
    linear-gradient(160deg, var(--lp-brand-deep) 0%, var(--lp-brand-strong) 100%);
}

.lp-auth__aside-top,
.lp-auth__brand,
.lp-auth__feature-card,
.lp-auth__input-wrap {
  display: flex;
}

.lp-auth__aside-top {
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lp-auth__brand {
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.lp-auth__brand-badge {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-auth__brand-badge svg {
  width: 1.2rem;
  height: 1.2rem;
}

.lp-auth__brand-wordmark {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-auth__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-auth__pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #54de89;
  box-shadow: 0 0 12px #54de89;
}

.lp-auth__aside-body {
  display: grid;
  gap: 1rem;
}

.lp-auth__aside .lp-kicker {
  color: #badcff;
}

.lp-auth__aside-title {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #fff;
}

.lp-auth__checks,
.lp-auth__steps {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.lp-auth__checks li,
.lp-auth__steps li p,
.lp-auth__aside-text,
.lp-auth__aside-footer p,
.lp-auth__feature-card p {
  color: rgba(232, 241, 255, 0.82);
}

.lp-auth__checks li {
  position: relative;
  padding-left: 1.3rem;
}

.lp-auth__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 0 0 0.28rem rgba(15, 86, 199, 0.12);
}

.lp-auth__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.lp-auth__steps span {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
}

.lp-auth__feature-stack {
  display: grid;
  gap: 0.75rem;
}

.lp-auth__feature-stack--register {
  margin-top: 0.15rem;
}

.lp-auth__feature-card {
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.lp-auth__feature-card strong,
.lp-auth__steps li p {
  display: block;
  color: #fff;
  font-weight: 700;
}

.lp-auth__feature-card p,
.lp-auth__steps li p {
  margin-top: 0.28rem;
  line-height: 1.58;
}

.lp-auth__feature-icon {
  width: 2.7rem;
  height: 2.7rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.lp-auth__feature-icon svg,
.lp-auth__input-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.lp-auth__aside-footer {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-auth__aside-footer p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.lp-auth__form {
  display: grid;
  gap: 0.95rem;
}

.lp-auth__form-head {
  display: grid;
  gap: 0.1rem;
}

.form-group {
  display: grid;
  gap: 0.38rem;
}

.form-label {
  color: #31517d;
  font-size: 0.92rem;
  font-weight: 700;
}

.lp-auth__input-wrap {
  align-items: center;
  gap: 0.78rem;
  min-height: 3.25rem;
  padding: 0 0.95rem;
  border-radius: 1rem;
  border: 1px solid #c7d8ee;
  background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
  transition:
    border-color var(--lp-speed),
    box-shadow var(--lp-speed),
    background-color var(--lp-speed);
}

.lp-auth__input-wrap:focus-within {
  border-color: var(--lp-focus);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 141, 234, 0.16);
}

.lp-auth__input-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: #55779d;
}

.form-input {
  width: 100%;
  min-height: 3.15rem;
  border: 0;
  border-radius: 0;
  padding: 0.78rem 0;
  font: inherit;
  color: var(--lp-text);
  background: transparent;
  outline: none;
}

.form-input:focus {
  box-shadow: none;
}

.form-button,
.lp-home-cta,
.footer-link--home-accent {
  transition:
    transform var(--lp-speed),
    box-shadow var(--lp-speed),
    filter var(--lp-speed),
    background-color var(--lp-speed),
    color var(--lp-speed),
    border-color var(--lp-speed);
}

.form-button {
  width: 100%;
  min-height: 3.2rem;
  border: 0;
  border-radius: 1rem;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 20px 38px -20px rgba(15, 86, 199, 0.7);
  cursor: pointer;
}

.form-button:hover,
.lp-home-cta:hover,
.footer-link--home-accent:hover {
  transform: translateY(-2px);
}

.message,
.error {
  border-radius: 1rem;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.25rem;
  font-size: 0.93rem;
  font-weight: 700;
}

.message {
  border: 1px solid #b7d5ff;
  background: #edf5ff;
  color: #244f9a;
}

.error {
  border: 1px solid #d9a9b4;
  background: var(--lp-danger-bg);
  color: var(--lp-danger);
}

.auth-footer,
.auth-link,
.lp-auth__shell-note {
  font-size: 0.93rem;
}

.auth-footer {
  text-align: center;
  color: var(--lp-text-soft);
}

.lp-auth__shell-note {
  color: #6d829a;
  line-height: 1.58;
  text-align: center;
}

.lp-guest-form-grid,
.lp-utility-shell,
.lp-utility-shell__actions {
  display: grid;
}

.lp-guest-form-grid {
  gap: 0.95rem;
}

.lp-utility-shell {
  width: min(100%, 60rem);
  margin-inline: auto;
  padding: 1.2rem;
}

.lp-utility-shell--compact {
  width: min(100%, 40rem);
}

.lp-utility-shell__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(210, 224, 239, 0.9);
  border-radius: 1.6rem;
  padding: 2rem 1.3rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: var(--lp-shadow-lg);
}

.lp-utility-shell__card::before,
.lp-utility-shell__card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lp-utility-shell__card::before {
  width: 16rem;
  height: 16rem;
  right: -7rem;
  top: -9rem;
  background: radial-gradient(circle, rgba(47, 141, 234, 0.16), transparent 70%);
}

.lp-utility-shell__card::after {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  bottom: -7rem;
  background: radial-gradient(circle, rgba(20, 102, 204, 0.12), transparent 72%);
}

.lp-utility-shell__card > * {
  position: relative;
}

.lp-utility-shell__card--compact {
  padding-block: 2.2rem;
}

.lp-utility-shell__card--404 {
  padding-block: 2.4rem;
}

.lp-utility-shell__card--danger {
  background: linear-gradient(180deg, #ffffff 0%, #fff6f8 100%);
}

.lp-utility-shell__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-brand);
  background: rgba(15, 86, 199, 0.1);
  box-shadow: 0 18px 34px -24px rgba(15, 86, 199, 0.72);
}

.lp-utility-shell__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.lp-utility-shell__icon--success {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
}

.lp-utility-shell__actions {
  gap: 0.75rem;
  justify-items: center;
  margin-top: 1.5rem;
}

.lp-utility-shell__actions .lp-btn,
.lp-utility-shell__actions .lp-link {
  width: 100%;
}

.lp-utility-shell__actions .lp-link {
  text-align: center;
}

.lp-utility-shell__meta {
  margin-top: 0.9rem;
  color: #738aa5;
  font-size: 0.92rem;
  line-height: 1.6;
}

.nav--home,
.lp-home-shell,
.footer-content--home {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 1rem;
}

.nav--home {
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  position: relative;
}

.nav-home-brand,
.footer-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-home-brand {
  color: var(--lp-text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-home-brand__badge,
.footer-home-brand__badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 16px 30px -18px rgba(15, 86, 199, 0.88);
}

.nav-home-brand__wordmark,
.footer-home-brand__wordmark {
  line-height: 1;
}

.nav-toggle--home {
  min-height: 2.85rem;
  min-width: 2.95rem;
  border-radius: 0.95rem;
  border-color: rgba(210, 224, 239, 0.92);
  background: rgba(255, 255, 255, 0.95);
}

.nav-list--home {
  gap: 0.5rem;
}

.nav-link--home,
.nav-link--home-ghost,
.nav-link--home-accent {
  text-decoration: none;
}

.nav-link--home {
  color: var(--lp-text-soft);
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  background: transparent;
  justify-content: flex-start;
}

.nav-link--home:hover {
  color: var(--lp-brand);
  background: transparent;
}

.nav-home-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.nav-home-actions--desktop {
  display: none;
}

.nav-item--home-actions {
  margin-top: 0.3rem;
}

.nav-link--home-ghost,
.nav-link--home-accent,
.footer-link--home-accent {
  min-height: 2.9rem;
  padding-inline: 1.05rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-link--home-ghost {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(210, 224, 239, 0.92);
}

.nav-link--home-ghost:hover {
  color: var(--lp-brand);
  background: #fff;
}

.nav-link--home-accent,
.footer-link--home-accent {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 20px 38px -22px rgba(15, 86, 199, 0.82);
}

.lp-home-shell {
  max-width: 1200px;
}

.lp-home-shell--narrow {
  max-width: 900px;
}

.lp-home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(105, 202, 255, 0.28), transparent 52%),
    radial-gradient(85% 72% at 0% 100%, rgba(47, 141, 234, 0.26), transparent 55%),
    linear-gradient(160deg, var(--lp-brand-deep) 0%, var(--lp-brand-strong) 100%);
}

.lp-home-hero__inner {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.lp-home-pill,
.lp-home-final-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
}

.lp-home-pill {
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d8e8ff;
}

.lp-home-pill__dot,
.lp-home-dashboard__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #54de89;
  box-shadow: 0 0 12px #54de89;
  animation: lpPulseDot 1.8s ease-in-out infinite;
}

.lp-home-title,
.lp-home-section__title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 800;
  text-wrap: balance;
}

.lp-home-title {
  margin-top: 1.3rem;
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: #fff;
}

.lp-home-title span {
  background: linear-gradient(90deg, #bddfff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-home-hero__lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
}

.lp-home-bullets {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  margin: 1.55rem 0 0;
}

.lp-home-bullets li,
.lp-home-feature,
.footer-home-main,
.footer-home-links {
  display: flex;
}

.lp-home-bullets li {
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.94);
}

.lp-home-bullet__icon,
.lp-home-card__icon,
.lp-home-support-card__icon,
.lp-home-feature__icon,
.lp-home-result-card__icon,
.lp-home-floating-note__icon,
.lp-home-final-card__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.lp-home-bullet__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  color: #7cf2a1;
}

.lp-home-support-card__icon svg,
.lp-home-card__icon svg {
  height: 1.8rem;
  width: 1.8rem;
}

.lp-home-result-card__icon svg,
.lp-home-feature__icon svg {
  height: 2rem;
  width: 2rem;
}

.lp-home-bullet__icon svg,
.lp-home-floating-note__icon svg,
.lp-home-final-card__badge-icon svg {
  width: 1rem;
  height: 1rem;
}

.lp-home-hero__actions,
.lp-home-final-card__actions,
.lp-home-final-card__badges {
  display: flex;
  flex-wrap: wrap;
}

.lp-home-final-card__actions {
  display: flex;
  justify-content: center;
}

.lp-home-hero__actions,
.lp-home-final-card__actions {
  gap: 0.875rem;
  margin-top: 1.85rem;
}

.lp-home-final-card__badges {
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.lp-home-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.45rem;
  border-radius: 0.95rem;
  font-size: 0.98rem;
  font-weight: 800;
}

.lp-home-cta--light,
.lp-home-cta--white {
  background: #fff;
}

.lp-home-cta--light {
  color: var(--lp-brand);
  box-shadow: 0 22px 44px -24px rgba(5, 25, 61, 0.58);
}

.lp-home-cta--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-home-cta--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 22px 44px -22px rgba(15, 86, 199, 0.72);
}

.lp-home-cta--white {
  color: var(--lp-text);
  border: 1px solid var(--lp-line);
}

.lp-home-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.95rem 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

.lp-home-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-home-hero__meta span::before {
  content: '';
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #a9d6ff;
}

.lp-home-hero__visual {
  position: relative;
}

.lp-home-dashboard-glow {
  position: absolute;
  inset: -1.5rem;
  background: radial-gradient(circle at 70% 28%, rgba(163, 218, 255, 0.62), transparent 56%);
  filter: blur(22px);
}

.lp-home-dashboard,
.lp-home-card,
.lp-home-support-card,
.lp-home-feature,
.lp-home-step,
.lp-home-result-card,
.lp-home-review,
.lp-home-faq__item,
.lp-home-final-card {
  border: 1px solid rgba(210, 224, 239, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lp-shadow-sm);
}

.lp-home-dashboard {
  position: relative;
  border-radius: 1.6rem;
  padding: 1.2rem;
  color: var(--lp-text);
  box-shadow: 0 44px 88px -34px rgba(2, 16, 52, 0.72);
}

.lp-home-dashboard__head,
.lp-home-dashboard__revenue-row,
.lp-home-dashboard__item,
.lp-home-dashboard__item-main,
.lp-home-dashboard__cta,
.lp-home-dashboard__status-wrap,
.lp-home-floating-note,
.lp-home-review figcaption,
.footer-home-brand {
  display: flex;
  align-items: center;
}

.lp-home-dashboard__head,
.lp-home-dashboard__item,
.lp-home-dashboard__cta {
  justify-content: space-between;
}

.lp-home-dashboard__status-wrap {
  gap: 0.55rem;
}

.lp-home-dashboard__status-text,
.lp-home-dashboard__item-main strong,
.lp-home-dashboard__item-side strong,
.lp-home-floating-note strong,
.footer-home-brand__wordmark,
.lp-home-card h3,
.lp-home-support-card h3,
.lp-home-feature h3,
.lp-home-step h3,
.lp-home-review strong,
.lp-home-result-card__value {
  font-weight: 800;
}

.lp-home-dashboard__tag {
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-brand);
  background: rgba(15, 86, 199, 0.1);
}

.lp-home-dashboard__subhead,
.lp-home-dashboard__item-main span,
.lp-home-dashboard__item-side span,
.lp-home-dashboard__cta span,
.lp-home-floating-note small,
.lp-home-review small,
.lp-home-section__lead,
.lp-home-final-card__meta,
.footer-copy--home,
.footer-home-meta {
  color: #738aa5;
}

.lp-home-dashboard__subhead {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.lp-home-dashboard__revenue {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1.05rem;
  color: #fff;
  background: linear-gradient(140deg, var(--lp-brand-deep), var(--lp-brand-strong));
}

.lp-home-dashboard__revenue-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.lp-home-dashboard__revenue-row {
  gap: 0.7rem;
  align-items: flex-end;
  margin-top: 0.2rem;
}

.lp-home-dashboard__revenue-value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-home-dashboard__revenue-trend {
  padding-bottom: 0.35rem;
  color: #7cf2a1;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-home-dashboard__stats,
.lp-home-grid {
  display: grid;
}

.lp-home-dashboard__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.lp-home-dashboard__stat,
.lp-home-dashboard__item-badge {
  border: 1px solid #e1ebf6;
  background: #f2f7fd;
}

.lp-home-dashboard__stat {
  padding: 0.75rem;
  border-radius: 0.85rem;
}

.lp-home-dashboard__stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--lp-brand-deep);
}

.lp-home-dashboard__stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: #59718c;
}

.lp-home-dashboard__list {
  margin-top: 0.8rem;
  border: 1px solid #e1ebf6;
  border-radius: 0.95rem;
  padding: 0.35rem 0.85rem;
}

.lp-home-dashboard__item {
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eef3f9;
}

.lp-home-dashboard__item--last {
  border-bottom: 0;
}

.lp-home-dashboard__item-main {
  gap: 0.7rem;
}

.lp-home-dashboard__item-badge {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.65rem;
  color: var(--lp-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.lp-home-dashboard__item-badge--wide {
  width: auto;
  padding-inline: 0.45rem;
}

.lp-home-dashboard__item-main div,
.lp-home-dashboard__item-side {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.lp-home-dashboard__item-main strong,
.lp-home-dashboard__item-side strong {
  font-size: 0.82rem;
}

.lp-home-dashboard__item-main span,
.lp-home-dashboard__item-side span {
  font-size: 0.69rem;
}

.lp-home-dashboard__item-side {
  text-align: right;
}

.lp-home-dashboard__item-side strong {
  color: #1f9d57;
}

.lp-home-dashboard__cta {
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.92rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.lp-home-dashboard__cta span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.lp-home-floating-note {
  position: absolute;
  left: -0.2rem;
  bottom: 1.5rem;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.97);
  color: var(--lp-text);
  box-shadow: 0 28px 56px -26px rgba(2, 16, 52, 0.52);
}

.lp-home-floating-note__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.72rem;
  color: #1f9d57;
  background: #e7f7ef;
}

.lp-home-floating-note strong {
  display: block;
  font-size: 0.82rem;
}

.lp-home-floating-note small {
  display: block;
  margin-top: 0.06rem;
  font-size: 0.7rem;
}

.lp-home-supported {
  padding: 1.35rem 0 0;
}

.lp-home-supported__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lp-home-supported__label,
.lp-home-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-home-supported__label {
  color: #7188a3;
}

.lp-home-chip,
.lp-home-final-card__badge {
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-home-chip {
  color: #365f97;
  border: 1px solid rgba(210, 224, 239, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.lp-home-section {
  padding: 4.8rem 0 0;
}

#why,
#features,
#how,
#results,
#reviews,
#faq {
  scroll-margin-top: 6rem;
}

.lp-home-section--soft,
.lp-home-section--reviews,
.lp-home-section--final {
  padding-bottom: 0;
}

.lp-home-section--soft {
  margin-top: 4.8rem;
}

.lp-home-band--results,
.lp-home-section--soft,
.lp-home-section--reviews,
.lp-home-section--final {
  position: relative;
}

.lp-home-band--results {
  margin-top: 4.8rem;
  padding: 4.8rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(120, 205, 255, 0.2), transparent 36%),
    linear-gradient(160deg, var(--lp-brand-deep), var(--lp-brand-strong));
}

.lp-home-section__head {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.lp-home-eyebrow {
  margin: 0;
  color: var(--lp-brand);
}

.lp-home-eyebrow--light {
  color: #badcff;
}

.lp-home-section__title {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 7vw, 2.9rem);
  color: var(--lp-text);
}

.lp-home-section__title--light {
  color: #fff;
}

.lp-home-section__lead {
  margin: 0.95rem auto 0;
  max-width: 39rem;
  font-size: 1rem;
  line-height: 1.66;
}

.lp-home-grid--benefits,
.lp-home-grid--support,
.lp-home-grid--feature-cards,
.lp-home-grid--steps,
.lp-home-grid--results-cards,
.lp-home-grid--reviews {
  gap: 1rem;
  margin-top: 2.6rem;
}

.lp-home-card,
.lp-home-support-card,
.lp-home-step,
.lp-home-review,
.lp-home-result-card {
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.lp-home-card,
.lp-home-support-card,
.lp-home-feature,
.lp-home-step,
.lp-home-result-card {
  transition: transform var(--lp-speed), box-shadow var(--lp-speed), border-color var(--lp-speed);
}

.lp-home-card:hover,
.lp-home-support-card:hover,
.lp-home-feature:hover,
.lp-home-step:hover,
.lp-home-result-card:hover {
  transform: translateY(-4px);
  border-color: #bfd5ee;
  box-shadow: 0 30px 56px -34px rgba(7, 34, 76, 0.26);
}

.lp-home-card__icon,
.lp-home-support-card__icon,
.lp-home-feature__icon,
.lp-home-result-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
}

.lp-home-card__icon,
.lp-home-support-card__icon,
.lp-home-result-card__icon {
  color: var(--lp-brand);
  background: rgba(15, 86, 199, 0.08);
}

.lp-home-card h3,
.lp-home-support-card h3,
.lp-home-step h3,
.lp-home-review blockquote,
.lp-home-result-card__value {
  margin: 0;
}

.lp-home-card h3,
.lp-home-support-card h3 {
  margin-top: 1rem;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-home-card p,
.lp-home-support-card p,
.lp-home-feature p,
.lp-home-step p,
.lp-home-review blockquote,
.lp-home-faq__item p,
.lp-home-result-card p {
  margin: 0.55rem 0 0;
  line-height: 1.62;
  color: var(--lp-text-soft);
}

.lp-home-support-card {
  background: rgba(255, 255, 255, 0.72);
}

.lp-home-support-card h3 {
  font-size: 1rem;
}

.lp-home-support-card p {
  font-size: 0.88rem;
}

.lp-home-feature {
  gap: 1rem;
  padding: 1.65rem;
  border-radius: 1.25rem;
}

.lp-home-feature__icon {
  width: 3.1rem;
  height: 3.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
  box-shadow: 0 16px 30px -16px rgba(15, 86, 199, 0.58);
}

.lp-home-feature h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.lp-home-feature p {
  font-size: 0.95rem;
}

.lp-home-step {
  background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}

.lp-home-step__index {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 86, 199, 0.1);
  color: var(--lp-brand);
  font-size: 1rem;
  font-weight: 800;
}

.lp-home-step--accent .lp-home-step__index {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
}

.lp-home-step h3 {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: var(--lp-text);
}

.lp-home-step p {
  font-size: 0.9rem;
}

.lp-home-result-card {
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.lp-home-result-card__icon {
  margin: 0 auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lp-home-result-card__value {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 9vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-home-result-card p {
  color: rgba(255, 255, 255, 0.78);
}

.lp-home-review {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.lp-home-review__stars {
  display: inline-flex;
  align-items: center;
  color: #f5a623;
}

.lp-home-review__stars svg {
  width: 6.2rem;
  height: 1.24rem;
}

.lp-home-review blockquote {
  flex: 1;
  margin-top: 0.85rem;
  font-size: 1rem;
  color: #27415d;
}

.lp-home-review figcaption {
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.lp-home-review__badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-bright));
}

.lp-home-review__badge--green {
  background: linear-gradient(135deg, #1f9d57, #37c47d);
}

.lp-home-review__badge--violet {
  background: linear-gradient(135deg, #7a4ff0, #a06bff);
}

.lp-home-review strong {
  font-size: 0.92rem;
}

.lp-home-review small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.82rem;
}

.lp-home-faq {
  display: grid;
  gap: 0.9rem;
  margin-top: 2.6rem;
}

.lp-home-faq__item {
  border-radius: 1.1rem;
  padding: 1.22rem 1.35rem;
}

.lp-home-faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-home-faq__item summary::after {
  content: '+';
  flex: none;
  color: var(--lp-brand);
  font-size: 1.3rem;
  line-height: 1;
}

.lp-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-home-faq__item[open] {
  box-shadow: var(--lp-shadow-sm);
}

.lp-home-faq__item[open] summary::after {
  content: '−';
}

.lp-home-faq__item p {
  font-size: 0.98rem;
}

.lp-home-section--final {
  padding: 4.8rem 0 0;
}

.lp-home-final-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  padding: 2.7rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  box-shadow: var(--lp-shadow-lg);
}

.lp-home-final-card::before,
.lp-home-final-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lp-home-final-card::before {
  width: 18rem;
  height: 18rem;
  right: -8rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(47, 141, 234, 0.16), transparent 70%);
}

.lp-home-final-card::after {
  width: 16rem;
  height: 16rem;
  left: -6rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(20, 102, 204, 0.12), transparent 72%);
}

.lp-home-final-card > * {
  position: relative;
}

.lp-home-final-card__badge {
  color: var(--lp-text);
  background: rgba(15, 86, 199, 0.08);
}

.lp-home-final-card__badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lp-brand);
}

.lp-home-final-card__meta {
  margin: 1rem 0 0;
  font-size: 0.84rem;
}

.footer-content--home {
  display: grid;
  gap: 1.5rem;
}

.footer-home-main,
.footer-home-links {
  gap: 1rem;
  flex-direction: column;
}

.footer-home-brand {
  gap: 0.75rem;
}

.footer-home-brand__wordmark {
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer-copy--home {
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.66;
}

.footer-list--home {
  justify-content: flex-start;
  gap: 0.55rem 1.3rem;
}

.footer-list--home-actions {
  gap: 0.75rem;
}

.footer-link--home {
  color: #edf4ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-link--home:hover {
  text-decoration: underline;
}

.footer-home-meta {
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .lp-auth {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    padding: 1.25rem;
    align-items: stretch;
  }

  .lp-auth__form-wrap,
  .lp-auth__aside {
    order: initial;
  }

  .lp-auth__aside {
    padding: 1.8rem;
  }

  .lp-auth__form-wrap {
    padding: 1.8rem;
  }

  .lp-auth__aside-title {
    max-width: 12ch;
  }

  .lp-auth__form-head {
    margin-bottom: 0.25rem;
  }

  .lp-guest-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-guest-form-grid .form-group:first-child {
    grid-column: 1 / -1;
  }

  .lp-utility-shell {
    padding: 1.5rem;
  }

  .lp-utility-shell__card {
    padding: 2.5rem 2rem;
  }

  .lp-utility-shell__actions {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: center;
  }

  .lp-utility-shell__actions .lp-btn,
  .lp-utility-shell__actions .lp-link {
    width: auto;
  }

  .nav--home,
  .lp-home-shell,
  .footer-content--home {
    padding-inline: 1.5rem;
  }

  .nav--home {
    min-height: 5rem;
    gap: 1.5rem;
  }

  .nav-home-actions--desktop {
    display: flex;
  }

  .nav-item--home-actions {
    display: none;
  }

  .nav-list--home {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 1rem;
  }

  .nav-toggle--home {
    display: none;
  }

  .nav-link--home {
    width: auto;
    min-height: auto;
    padding: 0;
    justify-content: center;
  }

  .lp-home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.2rem;
    padding-top: 4.7rem;
    padding-bottom: 5.5rem;
  }

  .lp-home-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-home-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-home-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content--home,
  .footer-home-links {
    align-items: flex-start;
  }

  .footer-home-links {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-home-meta {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .lp-auth {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
    padding: 1.35rem;
  }

  .lp-auth__aside {
    padding: 2rem;
  }

  .lp-auth__form-wrap {
    padding: 2rem;
  }

  .lp-guest-form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-guest-form-grid .form-group:first-child,
  .lp-guest-form-grid .form-group:nth-child(2),
  .lp-guest-form-grid .form-group:nth-child(3) {
    grid-column: span 1;
  }

  .nav-list--home {
    gap: 1.8rem;
  }

  .lp-home-title {
    font-size: 3.75rem;
  }

  .lp-home-section__title {
    font-size: 2.75rem;
  }

  .lp-home-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-content--home {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .footer-home-meta {
    grid-column: 1 / -1;
  }
}

@keyframes lpPulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.82;
  }
}
