/* Landing pré-login — BLOCK WIN */
body.bw-lp {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(88, 28, 180, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(37, 99, 235, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(45, 255, 110, 0.06), transparent 55%),
    linear-gradient(180deg, #070b1c 0%, #050816 40%, #040612 100%);
  background-attachment: fixed;
}

body.bw-lp.bw-page {
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(88, 28, 180, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 10%, rgba(37, 99, 235, 0.22), transparent 50%),
    linear-gradient(rgba(5, 8, 22, 0.88), rgba(5, 8, 22, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(90, 130, 220, 0.08) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(90, 130, 220, 0.08) 31px 32px);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(10px);
}

.lp-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.lp-logo {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.lp-logo-sm {
  height: 40px;
  margin: 0 auto 10px;
}

.lp-online {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 16, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7def5;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  animation: lp-fade-up 0.7s ease both;
}

.lp-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2dff6e;
  box-shadow: 0 0 0 0 rgba(45, 255, 110, 0.55);
  animation: lp-pulse 1.8s ease-out infinite;
}

.lp-header-actions {
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  text-decoration: none;
}

.lp-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

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

.lp-btn-ghost {
  padding: 10px 14px;
  color: #e8edff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-btn-purple {
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(180deg, #8b6cff, #6d4dff);
  box-shadow: 0 8px 22px rgba(109, 77, 255, 0.35);
}

.lp-btn-green {
  color: #04140a;
  background: linear-gradient(180deg, #57ff8d, #2dff6e 55%, #1fd85f);
  box-shadow: 0 10px 28px rgba(45, 255, 110, 0.35);
}

.lp-btn-xl {
  width: min(420px, 100%);
  padding: 16px 22px;
  font-size: 17px;
}

.lp-link {
  display: inline-block;
  margin-top: 12px;
  color: #c9d3f0;
  font-size: 14px;
  font-weight: 600;
}

.lp-link:hover {
  color: #fff;
}

.lp-hero {
  width: min(520px, calc(100% - 28px));
  margin: 8px auto 24px;
  text-align: center;
}

.lp-hero-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  animation: lp-fade-up 0.75s ease both;
}

.lp-hero-title span {
  background: linear-gradient(90deg, #fff, #a7f3d0, #2dff6e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-visual {
  width: min(360px, 100%);
  margin: 0 auto 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1224;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(45, 255, 110, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.4);
  animation: lp-fade-up 0.9s ease 0.08s both;
}

.lp-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: lp-float 5.5s ease-in-out infinite;
}

.lp-hero .lp-btn-xl {
  animation: lp-fade-up 1s ease 0.16s both;
}

.lp-stats {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-stat {
  background: rgba(12, 18, 40, 0.88);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
}

.lp-stat strong {
  display: block;
  color: #2dff6e;
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 900;
  margin-bottom: 4px;
}

.lp-stat span {
  color: #9aa6c3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.lp-section {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto 48px;
}

.lp-section-soft {
  padding: 28px 18px;
  border-radius: 24px;
  background: rgba(10, 14, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-section-head {
  text-align: center;
  margin-bottom: 22px;
}

.lp-kicker {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 255, 110, 0.12);
  color: #2dff6e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.lp-section-head h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.3px;
}

.lp-section-head p {
  margin: 8px 0 0;
  color: #9aa6c3;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lp-step {
  background: rgba(8, 12, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-step:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 255, 110, 0.28);
}

.lp-step-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 0;
  background: #0b1224;
}

.lp-step-media img {
  width: 100%;
  max-height: 110px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.lp-step h3 {
  margin: 12px 14px 6px;
  font-size: 15px;
  font-weight: 900;
}

.lp-step p {
  margin: 0 14px 16px;
  color: #9aa6c3;
  font-size: 13px;
  line-height: 1.45;
}

.lp-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lp-review {
  background: rgba(8, 12, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.lp-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.lp-review > p {
  margin: 0 0 16px;
  color: #d7def5;
  font-size: 14px;
  line-height: 1.5;
  min-height: 72px;
}

.lp-review footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7c5cff, #3b82f6);
}

.lp-review strong {
  display: block;
  font-size: 14px;
}

.lp-review small {
  color: #2dff6e;
  font-size: 12px;
  font-weight: 700;
}

.lp-cta {
  width: min(720px, calc(100% - 28px));
  margin: 0 auto 40px;
  text-align: center;
  padding: 32px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 255, 110, 0.16), transparent 55%),
    rgba(10, 14, 32, 0.85);
  border: 1px solid rgba(45, 255, 110, 0.18);
}

.lp-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
}

.lp-cta p {
  margin: 0 0 18px;
  color: #9aa6c3;
}

.lp-footer {
  width: min(720px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 0 40px;
  text-align: center;
  color: #9aa6c3;
  font-size: 13px;
}

.lp-footer p {
  margin: 4px 0;
}

.lp-footer-note {
  font-size: 12px;
  opacity: 0.85;
}

@keyframes lp-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 255, 110, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(45, 255, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 255, 110, 0); }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .lp-steps,
  .lp-reviews {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .lp-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "online online";
  }

  .lp-brand { grid-area: brand; }
  .lp-header-actions { grid-area: actions; }
  .lp-online {
    grid-area: online;
    justify-self: stretch;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .lp-logo { height: 40px; }

  .lp-btn-ghost {
    padding: 9px 10px;
    font-size: 13px;
  }

  .lp-btn-purple {
    padding: 9px 12px;
    font-size: 13px;
  }

  .lp-hero-visual {
    width: min(280px, 92%);
  }

  .lp-step-media img {
    max-height: 96px;
  }

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

  .lp-steps,
  .lp-reviews {
    grid-template-columns: 1fr;
  }

  .lp-review > p {
    min-height: 0;
  }
}
