/* Welcome / Landing page */
.welcome {
  min-height: 100vh;
  background:
    radial-gradient(circle at 0 18%, rgba(191, 219, 254, 0.72), transparent 30%),
    radial-gradient(circle at 100% 5%, rgba(219, 234, 254, 0.82), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #f4f8ff 100%);
  color: #0f172a;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

[data-theme="dark"] .welcome {
  background:
    radial-gradient(circle at 0 16%, rgba(30, 64, 175, 0.26), transparent 32%),
    radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.18), transparent 24%),
    linear-gradient(180deg, #080d19 0%, #0f172a 100%);
  color: #f8fafc;
}

.landing-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.welcome-toolbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-theme-toggle,
.welcome-toolbar .language-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.welcome-toolbar .language-toggle {
  min-width: 44px;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

[data-theme="dark"] .welcome-theme-toggle,
[data-theme="dark"] .welcome-toolbar .language-toggle {
  background: rgba(15, 23, 42, 0.88);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.28);
}

.welcome-theme-toggle:hover,
.welcome-toolbar .language-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

@keyframes welcomeFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes welcomeFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-hero {
  position: relative;
  width: calc(100% + 96px);
  min-height: 456px;
  margin: 0 -48px;
  display: grid;
  place-items: start center;
  padding: 34px 48px 86px;
  isolation: isolate;
  overflow: hidden;
  animation: welcomeFadeIn 0.65s ease;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.5) 0%, rgba(2, 6, 23, 0.2) 30%, rgba(2, 6, 23, 0.16) 58%, rgba(2, 6, 23, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.02) 58%, rgba(248, 251, 255, 0.72) 100%);
  pointer-events: none;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #f8fbff 100%);
  pointer-events: none;
}

[data-theme="dark"] .lp-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.58) 0%, rgba(2, 6, 23, 0.26) 30%, rgba(2, 6, 23, 0.18) 58%, rgba(2, 6, 23, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.24) 0%, rgba(2, 6, 23, 0.04) 58%, rgba(15, 23, 42, 0.78) 100%);
}

[data-theme="dark"] .lp-hero::after {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, #0f172a 100%);
}

.lp-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  opacity: 1;
}

.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
}

.lp-hero-ball {
  display: none;
}

.lp-hero-ball-left {
  left: 18px;
  top: 186px;
}

.lp-hero-ball-right {
  right: 72px;
  top: 42px;
  width: 70px;
  filter: blur(2px);
  opacity: 0.46;
}

.lp-hero-content {
  width: min(1080px, 100%);
  text-align: center;
  padding-top: 0;
}

.lp-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.24);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.16);
}

.lp-hero-brand-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 36px;
  filter: drop-shadow(0 10px 14px rgba(0, 17, 129, 0.16));
}

.lp-hero-brand-text {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0, 10, 35, 0.46);
}

[data-theme="dark"] .lp-hero-brand-text {
  color: #f8fafc;
}

.lp-hero-brand-text span {
  color: #aebcff;
}

[data-theme="dark"] .lp-hero-brand-text span {
  color: #8ea4ff;
}

.lp-hero h1 {
  font-size: clamp(2.42rem, 3.25vw, 3.72rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: #ffffff;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 10, 35, 0.72);
}

[data-theme="dark"] .lp-hero h1 {
  color: #f8fafc;
}

.lp-hero-sub {
  width: min(780px, 100%);
  margin: 0 auto 16px;
  font-size: clamp(0.94rem, 1.3vw, 1.05rem);
  color: #f1f5ff;
  line-height: 1.68;
  overflow-wrap: break-word;
  text-shadow: 0 2px 14px rgba(0, 10, 35, 0.7);
}

[data-theme="dark"] .lp-hero-sub {
  color: #cbd5e1;
}

.lp-hero-privacy {
  width: min(620px, 100%);
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.18);
  text-align: left;
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .lp-hero-privacy {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(142, 164, 255, 0.24);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.lp-hero-privacy-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1237B8 0%, #0B1F5E 55%, #06123A 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  flex: 0 0 auto;
}

.lp-hero-privacy-text {
  font-size: 0.86rem;
  color: #1e2b54;
  line-height: 1.58;
  font-weight: 600;
}

[data-theme="dark"] .lp-hero-privacy-text {
  color: #cbd5e1;
}

.lp-benefits {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin-top: -44px;
  animation: welcomeFadeUp 0.65s ease 0.1s both;
}

.lp-benefit {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

[data-theme="dark"] .lp-benefit {
  background: rgba(30, 41, 59, 0.88);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.lp-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 27, 184, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.lp-benefit-icon {
  color: #0B1F5E;
  font-size: 23px;
  line-height: 1;
  flex: 0 0 auto;
}

[data-theme="dark"] .lp-benefit-icon {
  color: #8ea4ff;
}

.lp-benefit-title {
  color: #06113a;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.26;
}

[data-theme="dark"] .lp-benefit-title {
  color: #f8fafc;
}

.lp-start-card {
  width: min(980px, 100%);
  margin: 24px auto 22px;
  padding: 18px 24px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  animation: welcomeFadeUp 0.65s ease 0.2s both;
}

[data-theme="dark"] .lp-start-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.new-user-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: 18px;
  align-items: stretch;
}

.lp-input-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(0, 27, 184, 0.2);
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.92);
  color: #06123A;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

[data-theme="dark"] .lp-input-wrap {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(142, 164, 255, 0.28);
  color: #8ea4ff;
}

.lp-input-wrap:focus-within {
  border-color: #0B1F5E;
  box-shadow: 0 0 0 4px rgba(0, 27, 184, 0.12);
}

.lp-input-wrap span {
  font-size: 24px;
  line-height: 1;
}

.new-user-form input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
}

[data-theme="dark"] .new-user-form input {
  color: #f8fafc;
}

.new-user-form input::placeholder {
  color: #475569;
  opacity: 0.92;
}

[data-theme="dark"] .new-user-form input::placeholder {
  color: #94a3b8;
}

.new-user-form button {
  background: linear-gradient(180deg, #1237B8 0%, #0B1F5E 55%, #06123A 100%);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 17, 129, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.new-user-form button {
  min-height: 64px;
  border-radius: 12px;
  font-size: 1.06rem;
}

.new-user-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 17, 129, 0.32);
  filter: saturate(1.05);
}

.lp-start-hint {
  margin-top: 12px;
  color: #1e2b54;
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
  font-weight: 600;
}

[data-theme="dark"] .lp-start-hint {
  color: #cbd5e1;
}

.lp-last-user-card {
  width: min(980px, 100%);
  margin: 18px auto 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    #fff;
  border: 1px solid rgba(0, 27, 184, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  animation: welcomeFadeUp 0.65s ease 0.22s both;
}

.lp-last-user-card[hidden] {
  display: none;
}

[data-theme="dark"] .lp-last-user-card {
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.92)),
    #0f172a;
  border-color: rgba(142, 164, 255, 0.24);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.lp-last-user-card:not([hidden]) + .lp-start-card {
  margin-top: 0;
}

.lp-last-user-kicker {
  width: fit-content;
  margin-bottom: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0B1F5E;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.2;
}

[data-theme="dark"] .lp-last-user-kicker {
  background: #172554;
  color: #aebcff;
}

.lp-last-user-copy h2 {
  margin: 0;
  color: #050b18;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.15;
  font-weight: 950;
}

[data-theme="dark"] .lp-last-user-copy h2 {
  color: #f8fafc;
}

.lp-last-user-action {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

[data-theme="dark"] .lp-last-user-action {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(148, 163, 184, 0.18);
}

.lp-last-user-action:hover,
.lp-last-user-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 27, 184, 0.22);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.lp-last-user-action:focus-visible {
  outline: 3px solid rgba(0, 27, 184, 0.16);
  outline-offset: 3px;
}

.lp-last-user-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050b18;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
}

[data-theme="dark"] .lp-last-user-avatar {
  background: #020617;
}

.lp-last-user-main {
  min-width: 0;
}

.lp-last-user-main strong {
  display: block;
  color: #050b18;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .lp-last-user-main strong {
  color: #f8fafc;
}

.lp-last-user-cta {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1237B8 0%, #0B1F5E 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.lp-how-card {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  animation: welcomeFadeUp 0.65s ease 0.24s both;
}

[data-theme="dark"] .lp-how-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-how-content {
  min-width: 0;
}

.lp-how-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0B1F5E;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

[data-theme="dark"] .lp-how-kicker {
  background: #172554;
  color: #aebcff;
}

.lp-how-card h2 {
  margin: 0 0 18px;
  color: #050b18;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  line-height: 1.08;
  font-weight: 950;
}

[data-theme="dark"] .lp-how-card h2 {
  color: #f8fafc;
}

.lp-how-steps {
  display: grid;
  gap: 10px;
}

.lp-how-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #f8fbff;
}

[data-theme="dark"] .lp-how-step {
  background: rgba(15, 23, 42, 0.66);
  border-color: rgba(148, 163, 184, 0.16);
}

.lp-how-step span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #1237B8 0%, #0B1F5E 55%, #06123A 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0, 17, 129, 0.2);
}

.lp-how-step h3 {
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 900;
}

[data-theme="dark"] .lp-how-step h3 {
  color: #f8fafc;
}

.lp-how-step p {
  margin: 0;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 600;
}

[data-theme="dark"] .lp-how-step p {
  color: #cbd5e1;
}

.lp-how-visual {
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
}

[data-theme="dark"] .lp-how-visual {
  background: #0f172a;
}

.lp-how-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lp-coach-card {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  animation: welcomeFadeUp 0.65s ease 0.26s both;
}

[data-theme="dark"] .lp-coach-card {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-coach-image {
  min-height: 270px;
  background: #eaf2ff;
  overflow: hidden;
}

.lp-coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}

.lp-coach-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-coach-kicker {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0B1F5E;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

[data-theme="dark"] .lp-coach-kicker {
  background: #172554;
  color: #aebcff;
}

.lp-coach-body h2 {
  margin: 0 0 10px;
  color: #050b18;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  font-weight: 950;
}

[data-theme="dark"] .lp-coach-body h2 {
  color: #f8fafc;
}

.lp-coach-body > p {
  margin: 0 0 18px;
  color: #1e2b54;
  font-size: 0.92rem;
  line-height: 1.6;
}

[data-theme="dark"] .lp-coach-body > p {
  color: #cbd5e1;
}

.lp-local-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  background: #fff7ed;
}

[data-theme="dark"] .lp-local-warning {
  background: rgba(120, 53, 15, 0.32);
  border-color: rgba(251, 191, 36, 0.24);
}

.lp-local-warning span {
  color: #b45309;
  font-size: 1.1rem;
  line-height: 1.3;
  flex: 0 0 auto;
}

.lp-local-warning p {
  margin: 0;
  color: #7c2d12;
  font-size: 0.78rem;
  line-height: 1.55;
  font-weight: 650;
}

[data-theme="dark"] .lp-local-warning p {
  color: #fde68a;
}

.lp-install-card {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(255, 255, 255, 0.94) 62%),
    #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  animation: welcomeFadeUp 0.65s ease 0.25s both;
}

[data-theme="dark"] .lp-install-card {
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.92) 64%),
    #0f172a;
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-install-copy {
  min-width: 0;
}

.lp-install-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0B1F5E;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

[data-theme="dark"] .lp-install-kicker {
  background: #172554;
  color: #aebcff;
}

.lp-install-card h2 {
  margin: 0 0 10px;
  color: #050b18;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  font-weight: 950;
}

[data-theme="dark"] .lp-install-card h2 {
  color: #f8fafc;
}

.lp-install-copy > p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #1e2b54;
  font-size: 0.92rem;
  line-height: 1.58;
}

[data-theme="dark"] .lp-install-copy > p {
  color: #cbd5e1;
}

.lp-install-steps {
  display: grid;
  gap: 10px;
}

.lp-install-step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #f8fbff;
}

[data-theme="dark"] .lp-install-step {
  background: rgba(15, 23, 42, 0.66);
  border-color: rgba(148, 163, 184, 0.16);
}

.lp-install-step strong {
  color: #0B1F5E;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 950;
}

[data-theme="dark"] .lp-install-step strong {
  color: #aebcff;
}

.lp-install-step span {
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 650;
}

[data-theme="dark"] .lp-install-step span {
  color: #cbd5e1;
}

.lp-install-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-install-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 180px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 28%, rgba(34, 197, 94, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(239, 68, 68, 0.08));
  transform: rotate(-7deg);
}

.lp-install-phone {
  position: relative;
  z-index: 1;
  width: 162px;
  min-height: 220px;
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 8px solid #0f172a;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.2);
}

[data-theme="dark"] .lp-install-phone {
  border-color: #020617;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.36);
}

.lp-install-phone-top {
  width: 44px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #cbd5e1;
}

[data-theme="dark"] .lp-install-phone-top {
  background: #475569;
}

.lp-install-app-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: #001BB8;
  box-shadow: 0 12px 22px rgba(0, 17, 129, 0.28);
}

.lp-install-app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lp-install-app-name {
  max-width: 116px;
  margin: 10px 0 16px;
  color: #0f172a;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}

[data-theme="dark"] .lp-install-app-name {
  color: #f8fafc;
}

.lp-install-app-line {
  width: 100%;
  height: 9px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #dbe7ff;
}

.lp-install-app-line-short {
  width: 68%;
  background: #bbf7d0;
}

[data-theme="dark"] .lp-install-app-line {
  background: #334155;
}

[data-theme="dark"] .lp-install-app-line-short {
  background: rgba(74, 222, 128, 0.45);
}

.lp-install-home-indicator {
  width: 58px;
  height: 5px;
  margin-top: auto;
  border-radius: 999px;
  background: #0f172a;
  opacity: 0.16;
}

[data-theme="dark"] .lp-install-home-indicator {
  background: #f8fafc;
  opacity: 0.24;
}

.lp-install-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 26px;
  max-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #166534;
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

[data-theme="dark"] .lp-install-badge {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(74, 222, 128, 0.28);
  color: #bbf7d0;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.lp-bottom-row {
  width: min(980px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  gap: 24px;
  align-items: stretch;
  animation: welcomeFadeUp 0.65s ease 0.3s both;
}

.lp-bottom-row.has-users {
  grid-template-columns: minmax(0, 1fr);
}

.lp-quote-card {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(0, 27, 184, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0B1F5E 0%, #06123A 56%, #1237B8 100%);
  box-shadow: 0 12px 28px rgba(0, 17, 129, 0.16);
  animation: welcomeFadeUp 0.65s ease 0.32s both;
}

[data-theme="dark"] .lp-quote-card {
  border-color: rgba(142, 164, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.lp-quote-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
}

.lp-quote-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.45;
  font-weight: 850;
}

.lp-why-card {
  position: relative;
  overflow: hidden;
  width: min(980px, 100%);
  margin: 0 auto 22px;
  padding: 28px 30px;
  background:
    linear-gradient(135deg, rgba(246, 250, 255, 0.98), rgba(255, 255, 255, 0.94) 58%),
    #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  animation: welcomeFadeUp 0.65s ease 0.25s both;
}

[data-theme="dark"] .lp-why-card {
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.94) 62%),
    #0f172a;
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4, #22c55e);
}

.lp-why-kicker {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0B1F5E;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
}

[data-theme="dark"] .lp-why-kicker {
  background: #172554;
  color: #aebcff;
}

.lp-why-card h2 {
  margin: 0 0 14px;
  color: #050b18;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  font-weight: 950;
}

[data-theme="dark"] .lp-why-card h2 {
  color: #f8fafc;
}

.lp-why-lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1e2b54;
  font-size: 0.94rem;
  line-height: 1.55;
}

[data-theme="dark"] .lp-why-lead {
  color: #cbd5e1;
}

.lp-why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: why-point;
}

.lp-why-point {
  position: relative;
  counter-increment: why-point;
  padding: 4px 0 0 22px;
  border-left: 2px solid rgba(37, 99, 235, 0.34);
  background: transparent;
  border-radius: 0;
}

.lp-why-point-solution {
  border-left-color: rgba(34, 197, 94, 0.46);
}

[data-theme="dark"] .lp-why-point {
  border-left-color: rgba(96, 165, 250, 0.5);
}

[data-theme="dark"] .lp-why-point-solution {
  border-left-color: rgba(74, 222, 128, 0.52);
}

.lp-why-point::before {
  content: "0" counter(why-point);
  display: block;
  margin-bottom: 7px;
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
}

.lp-why-point-solution::before {
  color: #16a34a;
}

[data-theme="dark"] .lp-why-point::before {
  color: #93c5fd;
}

[data-theme="dark"] .lp-why-point-solution::before {
  color: #86efac;
}

.lp-why-point h3 {
  margin: 0 0 5px;
  color: #050b18;
  font-size: 0.92rem;
  font-weight: 900;
}

[data-theme="dark"] .lp-why-point h3 {
  color: #f8fafc;
}

.lp-why-point p {
  margin: 0;
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.5;
}

[data-theme="dark"] .lp-why-point p {
  color: #cbd5e1;
}

.lp-users-section {
  min-width: 0;
}

.lp-users-inner,
.lp-donation-widget {
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .lp-users-inner,
[data-theme="dark"] .lp-donation-widget {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.lp-users-inner {
  padding: 22px 24px 18px;
  overflow: hidden;
}

.lp-users-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 5px;
}

.lp-users-inner h2,
.lp-donation-widget h2 {
  min-width: 0;
  margin: 0;
  color: #050b18;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 900;
}

.lp-donation-widget h2 {
  margin-bottom: 5px;
}

[data-theme="dark"] .lp-users-inner h2,
[data-theme="dark"] .lp-donation-widget h2 {
  color: #f8fafc;
}

.lp-reset-all-users {
  min-height: 32px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 10px;
  background: rgba(254, 242, 242, 0.9);
  color: #b91c1c;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.lp-reset-all-users[hidden] {
  display: none;
}

.lp-reset-all-users:hover,
.lp-reset-all-users:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(220, 38, 38, 0.32);
  background: #fee2e2;
}

.lp-reset-all-users:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.14);
  outline-offset: 2px;
}

[data-theme="dark"] .lp-reset-all-users {
  background: rgba(127, 29, 29, 0.22);
  border-color: rgba(248, 113, 113, 0.24);
  color: #fecaca;
}

[data-theme="dark"] .lp-reset-all-users:hover,
[data-theme="dark"] .lp-reset-all-users:focus-visible {
  background: rgba(127, 29, 29, 0.34);
  border-color: rgba(248, 113, 113, 0.34);
}

.lp-users-hint,
.lp-donation-copy {
  color: #1e2b54;
  font-size: 0.82rem;
  line-height: 1.55;
}

[data-theme="dark"] .lp-users-hint,
[data-theme="dark"] .lp-donation-copy {
  color: #cbd5e1;
}

.lp-users-hint {
  margin-bottom: 14px;
}

.user-search-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  padding: 0 12px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  color: #0B1F5E;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

[data-theme="dark"] .user-search-wrap {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(148, 163, 184, 0.18);
  color: #8ea4ff;
}

.user-search-wrap:focus-within {
  border-color: rgba(0, 27, 184, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 27, 184, 0.1);
}

.user-search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 650;
}

.user-search-wrap input:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

[data-theme="dark"] .user-search-wrap input {
  color: #f8fafc;
}

.user-search-wrap input::placeholder {
  color: #64748b;
}

.user-empty-state {
  padding: 18px 14px;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.user-empty-state strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
  margin-bottom: 5px;
}

.user-empty-state span {
  display: block;
}

[data-theme="dark"] .user-empty-state {
  border-color: rgba(148, 163, 184, 0.24);
  color: #cbd5e1;
}

[data-theme="dark"] .user-empty-state strong {
  color: #f8fafc;
}

.user-section-title {
  display: none;
}

.user-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 246px;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 2px;
}

.user-card {
  display: grid;
  grid-template-columns: 38px minmax(110px, 1fr) minmax(74px, 98px) 20px 26px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 56px;
  padding: 9px 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

[data-theme="dark"] .user-card {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(148, 163, 184, 0.18);
}

.user-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 27, 184, 0.2);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #050b18;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.85rem;
}

[data-theme="dark"] .user-avatar {
  background: #020617;
}

.user-card-info {
  min-width: 0;
}

.user-card-name {
  color: #050b18;
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="dark"] .user-card-name {
  color: #f8fafc;
}

.user-card-progress {
  color: #16a34a;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 850;
  margin-top: 3px;
}

.user-card-bar {
  width: 100%;
  min-width: 0;
  height: 7px;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
}

[data-theme="dark"] .user-card-bar {
  background: #334155;
}

.user-card-bar-fill {
  height: 100%;
  background: #16a34a;
  border-radius: inherit;
  transition: width 0.4s ease;
}

.user-card-arrow {
  color: #0B1F5E;
  font-size: 17px;
  line-height: 1;
}

[data-theme="dark"] .user-card-arrow {
  color: #8ea4ff;
}

.user-card-delete {
  width: 26px;
  height: 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.user-card-delete:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

.lp-donation-widget {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-panel-wrap {
  position: fixed;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(104px + env(safe-area-inset-bottom));
  z-index: 190;
  width: min(420px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.donation-panel-wrap[hidden] {
  display: none;
}

.donation-panel-wrap.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.donation-panel-wrap .lp-donation-widget {
  height: auto;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.22);
}

[data-theme="dark"] .donation-panel-wrap .lp-donation-widget {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.lp-donation-widget::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #dc2626 0%, #0B1F5E 100%);
}

.lp-donation-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

[data-theme="dark"] .lp-donation-close {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(148, 163, 184, 0.22);
  color: #e2e8f0;
}

.lp-donation-close:hover {
  transform: translateY(-1px);
  border-color: #dc2626;
  color: #dc2626;
}

.lp-donation-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 38px;
}

.lp-donation-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 17, 129, 0.24);
}

[data-theme="dark"] .lp-donation-mark {
  box-shadow: 0 12px 28px rgba(142, 164, 255, 0.22);
}

.lp-donation-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.lp-donation-kicker {
  margin: 0 0 4px;
  color: #0B1F5E;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-theme="dark"] .lp-donation-kicker {
  color: #aebcff;
}

.lp-donation-copy {
  margin: 0;
}

.lp-donation-amounts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-donation-amount {
  min-height: 48px;
  border: 1px solid rgba(0, 27, 184, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: #06123A;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

[data-theme="dark"] .lp-donation-amount {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(142, 164, 255, 0.22);
  color: #dbe4ff;
}

.lp-donation-amount:hover,
.lp-donation-amount.is-active {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #1237B8 0%, #0B1F5E 55%, #06123A 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 17, 129, 0.22);
}

.lp-donation-custom {
  grid-column: 1 / -1;
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: #f8fbff;
  color: #1e2b54;
  font-size: 0.82rem;
  font-weight: 850;
}

[data-theme="dark"] .lp-donation-custom {
  background: rgba(15, 23, 42, 0.68);
  border-color: rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
}

.lp-donation-custom input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(0, 27, 184, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 800;
  outline: 0;
  padding: 0 12px;
}

[data-theme="dark"] .lp-donation-custom input {
  background: #0f172a;
  border-color: rgba(142, 164, 255, 0.26);
  color: #f8fafc;
}

.lp-donation-custom input:focus {
  border-color: #0B1F5E;
  box-shadow: 0 0 0 3px rgba(0, 27, 184, 0.12);
}

.lp-donation-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-donation-btn {
  min-height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: none;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  align-self: stretch;
}

.lp-donation-btn:hover {
  transform: translateY(-2px);
}

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

.lp-donation-paypal {
  background: linear-gradient(135deg, #003087, #009cde);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 48, 135, 0.3);
}

.lp-donation-paypal:hover {
  box-shadow: 0 10px 28px rgba(0, 48, 135, 0.4);
  filter: brightness(1.08);
}

[data-theme="dark"] .lp-donation-paypal {
  background: linear-gradient(135deg, #0050b3, #00aaef);
  box-shadow: 0 6px 20px rgba(0, 80, 179, 0.35);
}

[data-theme="dark"] .lp-donation-paypal:hover {
  box-shadow: 0 10px 28px rgba(0, 80, 179, 0.5);
}

.lp-donation-revolut {
  background: linear-gradient(135deg, #0D0D0D, #2D2D2D);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lp-donation-revolut:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  filter: brightness(1.15);
}

[data-theme="dark"] .lp-donation-revolut {
  background: linear-gradient(135deg, #1a1a2e, #393952);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .lp-donation-revolut:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.lp-paypal-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.lp-revolut-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.lp-donation-secure,
.lp-donation-note {
  margin: 0;
  color: #475569;
  font-size: 0.76rem;
  line-height: 1.5;
}

[data-theme="dark"] .lp-donation-secure,
[data-theme="dark"] .lp-donation-note {
  color: #cbd5e1;
}

.lp-donation-secure {
  padding: 12px 14px;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 14px;
  background: #f0fdf4;
  color: #14532d;
  font-weight: 700;
}

[data-theme="dark"] .lp-donation-secure {
  background: rgba(6, 78, 59, 0.38);
  border-color: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
}

.lp-donation-note {
  padding-top: 2px;
}

ion-fab.donation-fab {
  position: fixed;
  right: calc(24px + env(safe-area-inset-right));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 200;
}

ion-fab.donation-fab ion-fab-button {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0B1F5E;
  color: #ffffff;
  cursor: pointer;
  --background: #0B1F5E;
  --background-hover: #071747;
  --background-activated: #06123A;
  --color: #ffffff;
  --border-radius: 50%;
  --box-shadow: 0 16px 36px rgba(0, 17, 129, 0.34);
}

ion-fab.donation-fab ion-fab-button::part(native) {
  display: grid;
  place-items: center;
  padding: 0;
}

[data-theme="dark"] ion-fab.donation-fab ion-fab-button {
  background: #3150c7;
  --background: #3150c7;
  --background-hover: #1b318b;
  --background-activated: #101f5a;
  --box-shadow: 0 16px 36px rgba(142, 164, 255, 0.24);
}

.donation-fab-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  font-size: 28px;
  line-height: 1;
  font-family: inherit;
  font-weight: 900;
  margin: auto;
}

.donation-fab-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: translate(0, 1px);
}

.donation-fab-close {
  display: none;
  font-size: 24px;
  line-height: 1;
}

ion-fab.donation-fab ion-fab-button.is-open .donation-fab-icon img {
  display: none;
}

ion-fab.donation-fab ion-fab-button.is-open .donation-fab-close {
  display: block;
}

.lp-footer {
  text-align: center;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: auto;
}

[data-theme="dark"] .lp-footer {
  border-top-color: rgba(148, 163, 184, 0.16);
}

.lp-footer-copy {
  font-size: 0.78rem;
  color: #1e2b54;
  font-weight: 650;
}

[data-theme="dark"] .lp-footer-copy {
  color: #cbd5e1;
}

.lp-footer-tagline {
  font-size: 0.72rem;
  color: #475569;
  margin-top: 4px;
  font-weight: 500;
}

[data-theme="dark"] .lp-footer-tagline {
  color: #94a3b8;
}

@media (max-width: 1220px) {
  .landing-shell {
    padding-inline: 28px;
  }

  .lp-hero {
    width: calc(100% + 56px);
    margin-inline: -28px;
    padding-inline: 28px;
  }

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

@media (max-width: 900px) {
  .landing-shell {
    padding: 0 20px;
  }

  .lp-hero {
    width: calc(100% + 40px);
    min-height: 500px;
    margin-inline: -20px;
    padding: 84px 20px 58px;
  }

  .lp-hero::after {
    background: linear-gradient(180deg, rgba(0, 10, 35, 0.1) 0%, rgba(0, 10, 35, 0.04) 66%, rgba(248, 251, 255, 0.52) 100%);
  }

  [data-theme="dark"] .lp-hero::after {
    background: linear-gradient(180deg, rgba(0, 7, 22, 0.16) 0%, rgba(0, 7, 22, 0.06) 66%, rgba(15, 23, 42, 0.64) 100%);
  }

  .lp-hero-image img {
    object-position: center top;
  }

  .lp-hero-ball-left {
    left: 14px;
    top: 166px;
    width: 42px;
  }

  .lp-hero-ball-right {
    right: 28px;
    top: 32px;
    width: 54px;
  }

  .lp-hero h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.5rem);
  }

  .lp-hero-sub {
    font-size: 0.94rem;
  }

  .lp-benefits {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    margin-inline: -20px;
    margin-top: -30px;
    padding: 0 20px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .lp-benefits::-webkit-scrollbar {
    display: none;
  }

  .lp-benefit {
    flex: 0 0 188px;
    min-height: 58px;
    justify-content: flex-start;
    scroll-snap-align: start;
  }

  .lp-start-card {
    padding: 16px;
  }

  .lp-last-user-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .lp-how-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-install-card {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .lp-install-visual {
    min-height: 230px;
  }

  .lp-how-visual {
    min-height: 240px;
  }

  .lp-how-visual img {
    min-height: 240px;
  }

  .lp-why-card {
    padding: 22px 20px;
  }

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

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

  .lp-coach-image {
    min-height: 220px;
  }

  .lp-coach-body {
    padding: 24px 22px;
  }

  .new-user-form {
    grid-template-columns: 1fr;
  }

  .lp-bottom-row,
  .lp-bottom-row.has-users {
    grid-template-columns: 1fr;
  }

  .lp-quote-card {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    padding-inline: 14px;
  }

  .welcome-toolbar {
    top: 14px;
    right: 14px;
    gap: 8px;
  }

  .welcome-theme-toggle,
  .welcome-toolbar .language-toggle {
    width: 40px;
    height: 40px;
  }

  .lp-hero {
    width: calc(100% + 28px);
    min-height: 480px;
    margin-inline: -14px;
    padding: 96px 14px 48px;
  }

  .lp-hero-brand {
    margin-bottom: 10px;
  }

  .lp-hero-brand-icon {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .lp-hero-brand-text {
    font-size: 1.12rem;
  }

  .lp-hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 1.95rem);
    line-height: 1.12;
  }

  .lp-hero-sub {
    line-height: 1.58;
  }

  .lp-hero-privacy {
    align-items: flex-start;
    padding: 14px;
  }

  .lp-hero-privacy-text {
    font-size: 0.8rem;
  }

  .lp-benefits {
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-padding-inline: 14px;
  }

  .lp-benefit {
    flex-basis: 168px;
    min-height: 56px;
    padding: 10px;
  }

  .lp-benefit-icon {
    font-size: 21px;
  }

  .lp-benefit-title {
    font-size: 0.74rem;
  }

  .lp-users-inner {
    padding: 20px 14px 18px;
  }

  .lp-users-head {
    align-items: center;
    gap: 10px;
  }

  .lp-users-inner h2 {
    font-size: 1.08rem;
  }

  .lp-reset-all-users {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .lp-start-card,
  .lp-last-user-card,
  .lp-install-card,
  .lp-how-card,
  .lp-coach-card,
  .lp-quote-card,
  .lp-users-inner,
  .lp-donation-widget {
    border-radius: 14px;
  }

  .lp-quote-card {
    padding: 15px;
    gap: 12px;
  }

  .lp-quote-card span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .lp-quote-card p {
    font-size: 0.96rem;
  }

  .lp-how-card {
    padding: 16px;
  }

  .lp-last-user-card {
    margin-top: 14px;
    padding: 12px;
    gap: 10px;
  }

  .lp-last-user-action {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 8px;
  }

  .lp-last-user-cta {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .lp-install-card {
    padding: 18px 16px;
  }

  .lp-install-card h2 {
    font-size: 1.35rem;
  }

  .lp-install-copy > p {
    font-size: 0.86rem;
  }

  .lp-install-step {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 12px;
  }

  .lp-install-visual {
    min-height: 214px;
  }

  .lp-install-visual::before {
    width: 230px;
    height: 154px;
  }

  .lp-install-phone {
    width: 144px;
    min-height: 196px;
    border-radius: 26px;
  }

  .lp-install-badge {
    right: 4px;
    bottom: 18px;
  }

  .lp-how-card h2 {
    font-size: 1.35rem;
  }

  .lp-how-step {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 11px;
  }

  .lp-how-step span {
    width: 34px;
    height: 34px;
  }

  .lp-how-visual,
  .lp-how-visual img {
    min-height: 190px;
  }

  .lp-coach-image {
    min-height: 176px;
  }

  .lp-coach-body {
    padding: 20px 18px;
  }

  .lp-coach-body h2 {
    font-size: 1.35rem;
  }

  .lp-coach-body > p {
    font-size: 0.86rem;
  }

  .lp-input-wrap,
  .new-user-form button {
    min-height: 58px;
  }

  .user-card {
    grid-template-columns: 34px minmax(0, 1fr) 24px 24px;
    grid-template-rows: auto auto;
    gap: 6px 9px;
    min-height: 62px;
    padding: 9px;
  }

  .user-avatar {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .user-card-info {
    grid-column: 2;
    grid-row: 1;
  }

  .user-card-bar {
    grid-column: 2 / -1;
    grid-row: 2;
    align-self: center;
    height: 6px;
  }

  .user-card-arrow {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }

  .user-card-delete {
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .lp-donation-widget {
    padding: 20px 18px;
  }

  ion-fab.donation-fab {
    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  ion-fab.donation-fab ion-fab-button {
    width: 70px;
    height: 70px;
  }

  .donation-fab-icon {
    width: 70px;
    height: 70px;
  }

  .donation-fab-icon img {
    width: 62px;
    height: 62px;
    transform: translate(0, 1px);
  }

  .donation-panel-wrap {
    left: 16px;
    right: 16px;
    bottom: calc(104px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    transform-origin: right bottom;
  }

  .donation-panel-wrap .lp-donation-widget {
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

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

  .lp-donation-custom {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

}
