/* Homepage — ported from temp/homepage.css + temp/common.css (pill) */

.lw-page--home .lw-land {
  gap: 0;
  padding: 0;
}

.lw-page--home .landing-wrap {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.lw-page--home .main-shell,
.lw-page--home .landing-wrap--has-topbar .main-shell {
  padding-top: 0;
  padding-bottom: 0;
}

/* Hero — temp .hero */
.lw-home-hero {
  padding: 160px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: visible;
}

/* Pill — temp .pill-label (inline-flex + parent text-align centers it) */
.lw-home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(74, 158, 255, 0.2);
  background: rgba(74, 158, 255, 0.05);
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Pulse — temp .pulse-dot-* */
.lw-home-hero__pulse {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.lw-home-hero__pulse-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #4A9EFF;
  opacity: 0.75;
  animation: lw-home-pulse-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.lw-home-hero__pulse-core {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A9EFF;
}

@keyframes lw-home-pulse-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Title — temp .hero-title */
.lw-home-hero__brand {
  font-family: var(--lw-font-display), var(--lw-font-family), sans-serif;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: 0;
  line-height: 1;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.5) 12%,
    rgba(255, 255, 255, 0.75) 22%,
    #FFFFFF 38%,
    #FFFFFF 62%,
    rgba(255, 255, 255, 0.75) 78%,
    rgba(255, 255, 255, 0.5) 88%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
}

/* Showcase — temp .hero-image-showcase */
.lw-home-hero__showcase {
  width: 78%;
  max-width: 756px;
  margin: 40px auto 40px;
  padding: 0 20px;
  position: relative;
  overflow: visible;
}

.lw-home-hero__showcase::before,
.lw-home-hero__showcase::after {
  content: '';
  position: absolute;
  top: 50%;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.lw-home-hero__showcase::before {
  left: 30%;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74, 158, 255, 0.55) 0%, transparent 65%);
  transform: translate(-50%, -50%);
}

.lw-home-hero__showcase::after {
  right: 30%;
  width: 720px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(74, 158, 255, 0.45) 0%, transparent 65%);
  transform: translate(50%, -50%);
}

.lw-home-hero__particles {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.lw-home-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Frame — temp .hero-image-container */
.lw-home-hero__frame {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
  border: 5px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(74, 158, 255, 0.08);
  animation: lw-home-hero-float 5s ease-in-out infinite;
}

.lw-home-hero__menu {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -4px;
  margin-bottom: -4px;
}

@keyframes lw-home-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.lw-home-hero__subtitle {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 auto 10px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.lw-home-hero__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 18px;
  line-height: 1.8;
}

.lw-home-hero__cta {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0;
}

/* CTA — temp .btn.btn-primary */
.lw-home-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: radial-gradient(
    ellipse 155% 140% at 50% 0%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.035) 58%,
    rgba(255, 255, 255, 0.012) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lw-home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    transparent 32%,
    rgba(255, 255, 255, 0.35) 46%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.35) 54%,
    transparent 68%,
    transparent 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: lw-home-cta-shine 12s linear infinite;
}

@keyframes lw-home-cta-shine {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.lw-home-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lw-home-cta__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Feedback — temp/index.html cascade: homepage.css then products.css (products wins) */
.lw-home-feedback {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* temp/products.css .section-title (overrides homepage.css 32px white) */
.lw-page--home .lw-home-feedback__title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
  filter: none;
}

.lw-home-quotes {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.lw-home-quotes__track {
  --slide-w: 340px;
  --slide-n: 10;
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
  animation: lw-home-quotes-scroll 60s linear infinite;
}

@keyframes lw-home-quotes-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc((var(--slide-w) + 20px) * var(--slide-n) * -1)); }
}

.lw-home-quote {
  flex: 0 0 auto;
  width: 340px;
  min-width: 340px;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  transition: border-color 0.3s ease;
}

.lw-home-quote:hover {
  border-color: rgba(255, 255, 255, 0.13);
}

.lw-home-quote__stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 12px;
}

.lw-home-quote__stars svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.lw-home-quote__author {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: #4A9EFF;
}

.lw-home-quote__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Products showcase — temp .products-showcase */
.lw-home-popular {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.lw-home-popular__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.lw-home-popular__title {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.lw-home-popular__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.lw-home-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  justify-items: stretch;
}

.lw-home-popular__grid .product-card {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.lw-page--home .lw-land .lw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.lw-page--home .lw-land .lw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .lw-home-popular__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lw-home-popular__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .lw-home-hero {
    padding: 110px 20px 60px;
  }

  .lw-home-hero__brand {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .lw-home-hero__showcase {
    margin: 30px auto 32px;
    padding: 0;
    width: min(88%, 756px);
  }

  .lw-home-hero__showcase::before,
  .lw-home-hero__showcase::after {
    width: min(520px, 160vw);
    height: 260px;
    filter: blur(40px);
  }

  .lw-home-hero__frame {
    border-radius: 10px;
  }

  .lw-home-hero__subtitle,
  .lw-home-hero__desc {
    font-size: 14px;
  }

  .lw-home-hero__cta {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .lw-home-cta {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
  }

  .lw-home-feedback {
    padding: 60px 20px;
  }

  .lw-page--home .lw-home-feedback__title {
    /* products.css has no mobile override — keep 0.85rem / 0.2em */
    margin-bottom: 30px;
    font-size: 0.85rem;
  }

  .lw-home-quotes__track {
    --slide-w: 280px;
  }

  .lw-home-quote {
    width: 280px;
    min-width: 280px;
    padding: 20px;
  }

  .lw-home-popular {
    padding: 40px 20px 60px;
  }

  .lw-home-popular__head {
    margin-bottom: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lw-home-hero__frame,
  .lw-home-hero__pulse-ping,
  .lw-home-cta::before,
  .lw-home-quotes__track {
    animation: none;
  }

  .lw-home-hero__brand {
    -webkit-text-fill-color: #fff;
    background: none;
    color: #fff;
    filter: none;
  }

  .lw-page--home .lw-land .lw-reveal,
  .lw-page--home .lw-land .lw-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Footer (kept from previous landing.css) */
.footer--site{width: 100%;margin-top: auto;padding: clamp(48px, 7vw, 80px) 0 28px;border-top: 1px solid rgba(255, 255, 255, 0.08);background: transparent;}
.footer--site .footer-shell{width: min(1180px, calc(100% - 48px));margin: 0 auto;}
.footer-site__grid{display: grid;grid-template-columns: 2fr 1fr 1fr 1fr;gap: clamp(28px, 4vw, 56px);margin-bottom: 36px;}
.footer-site__brand-name{margin: 0 0 14px;font-family: var(--lw-font-display);font-size: 22px;font-weight: 900;letter-spacing: 0.08em;text-transform: uppercase;color: #fff;}
.footer-site__brand-text{margin: 0;font-size: 14px;line-height: 1.65;color: rgba(255, 255, 255, 0.55);}
.footer-site__col-title{margin: 0 0 16px;font-size: 12px;font-weight: 700;letter-spacing: 0.12em;text-transform: uppercase;color: #fff;}
.footer-site__links{display: flex;flex-direction: column;gap: 10px;}
.footer-site__links a{color: rgba(255, 255, 255, 0.55);font-size: 13px;text-decoration: none;transition: color 0.15s ease;}
.footer-site__links a:hover{color: #fff;}
.footer-site__bottom{padding-top: 28px;border-top: 1px solid rgba(255, 255, 255, 0.08);text-align: center;}
.footer-site__bottom-row{display: flex;flex-wrap: wrap;align-items: center;justify-content: center;gap: 16px 28px;margin-top: 12px;}
.footer-site__bottom-row .footer-site__copy{margin: 0;}
.footer--minimal .footer-shell{display: flex;flex-wrap: wrap;align-items: center;justify-content: center;gap: 16px 24px;}
.footer-site__disclaimer{margin: 0 0 12px;font-size: 12px;line-height: 1.55;color: rgba(255, 255, 255, 0.4);}
.footer-site__disclaimer strong{color: rgba(255, 255, 255, 0.62);font-weight: 600;}
.footer-site__copy{margin: 0;font-size: 12px;color: rgba(255, 255, 255, 0.38);}
@media (max-width: 860px) {
  .footer-site__grid{grid-template-columns: 1fr 1fr;gap: 28px;}
  .footer-site__brand{grid-column: 1 / -1;}
}
@media (max-width: 520px) {
  .footer-site__grid{grid-template-columns: 1fr;}
}

.footer--minimal{width: 100%;margin-top: auto;padding: 28px 0 22px;border-top: 1px solid rgba(255, 255, 255, 0.06);text-align: center;}
.footer--minimal .footer-shell{width: min(720px, calc(100% - 40px));margin: 0 auto;}
.footer--minimal .footer-site__copy{margin: 0;}
@media (max-width: 800px) {
  .footer-site__bottom-row{flex-direction: column;gap: 10px;}
}
@media (max-width: 480px) {
  .footer--site .footer-shell,
  .footer--minimal .footer-shell{width: calc(100% - 32px);}
}

/* —— Auth pages (login / register / forgot) —— */
.lw-auth-page{width: min(980px, calc(100% - 40px));margin: 0 auto;padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px);}
.lw-auth-page__grid{display: grid;grid-template-columns: 1fr 1fr;gap: clamp(28px, 5vw, 56px);align-items: center;}
.lw-auth-page__welcome-title{margin: 0 0 14px;font-size: clamp(1.75rem, 3.5vw, 2.35rem);font-weight: 800;letter-spacing: -0.03em;line-height: 1.15;color: #fff;}
.lw-auth-page__welcome-title span{background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.55));-webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent;}
.lw-auth-page__welcome-lead{margin: 0;font-size: 15px;line-height: 1.65;color: rgba(255, 255, 255, 0.58);}
.lw-auth-page__card{padding: 28px 26px;border-radius: 16px;border: 1px solid rgba(255, 255, 255, 0.1);background: rgba(255, 255, 255, 0.03);backdrop-filter: blur(16px);-webkit-backdrop-filter: blur(16px);box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.9);}
.lw-auth-page__tabs{display: flex;gap: 6px;margin-bottom: 22px;padding: 4px;border-radius: 12px;background: rgba(0, 0, 0, 0.28);border: 1px solid rgba(255, 255, 255, 0.06);}
.lw-auth-page__tab{flex: 1;min-height: 40px;border: 0;border-radius: 9px;background: transparent;color: rgba(255, 255, 255, 0.55);font: inherit;font-size: 13px;font-weight: 700;letter-spacing: 0.04em;text-transform: uppercase;cursor: pointer;text-decoration: none;display: inline-flex;align-items: center;justify-content: center;}
.lw-auth-page__tab.is-active{background: rgba(255, 255, 255, 0.08);color: #fff;}
.lw-auth-page__card-title{margin: 0 0 18px;font-size: 1.25rem;font-weight: 700;color: #fff;}
.lw-auth-page .lw-auth-field{margin-bottom: 14px;}
.lw-auth-page .lw-auth-field label{display: block;margin-bottom: 6px;font-size: 12px;font-weight: 600;color: rgba(255, 255, 255, 0.62);}
.lw-auth-page .lw-auth-field__control input{width: 100%;min-height: 46px;height: 46px;padding: 0 14px;border-radius: 10px;border: 1px solid rgba(255, 255, 255, 0.1);background: rgba(0, 0, 0, 0.35);color: #fff;font: inherit;box-sizing: border-box;}
.lw-auth-page .lw-auth-field__control input:focus{outline: none;border-color: rgba(255, 255, 255, 0.28);box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);}
.lw-auth-page .lw-auth-field__control input::placeholder{color: rgba(255, 255, 255, 0.35);}
.lw-auth-page .lw-auth-field__control{position: relative;}
.lw-auth-page .lw-btn.primary,
.lw-auth-page__submit{appearance: none;-webkit-appearance: none;display: inline-flex;align-items: center;justify-content: center;width: 100%;min-height: 48px;height: auto;margin-top: 8px;padding: 0 16px;border-radius: 10px;border: 1px solid rgba(255, 255, 255, 0.16);background: rgba(255, 255, 255, 0.92);color: #0a0a0a;font: inherit;font-size: 13px;font-weight: 800;letter-spacing: 0.08em;text-transform: uppercase;cursor: pointer;box-sizing: border-box;}
.lw-auth-page__submit:hover{background: #fff;}
.lw-auth-page__foot{margin-top: 16px;text-align: center;font-size: 13px;color: rgba(255, 255, 255, 0.5);}
.lw-auth-page__foot a{color: #fff;text-decoration: underline;text-underline-offset: 3px;}
@media (max-width: 800px) {
  .lw-auth-page__grid{grid-template-columns: 1fr;gap: 24px;}
  .lw-auth-page__welcome{text-align: center;}
}
.lw-auth-page .lw-auth-reset-steps{display: flex;align-items: center;gap: 8px;margin: 0 0 18px;padding: 0;}
.lw-auth-page .lw-auth-reset-steps__item{display: inline-flex;align-items: center;gap: 8px;min-width: 0;padding: 6px 10px;border-radius: 999px;border: 1px solid rgba(255, 255, 255, 0.08);background: rgba(255, 255, 255, 0.03);color: rgba(255, 255, 255, 0.42);font-size: 11px;font-weight: 600;line-height: 1.2;}
.lw-auth-page .lw-auth-reset-steps__item.is-active{border-color: rgba(255, 255, 255, 0.18);background: rgba(255, 255, 255, 0.08);color: #fafafa;}
.lw-auth-page .lw-auth-reset-steps__item.is-done{border-color: rgba(124, 184, 138, 0.28);background: rgba(124, 184, 138, 0.1);color: #b8e0c0;}
.lw-auth-page .lw-auth-reset-steps__item.is-pending{opacity: 0.72;}
.lw-auth-page .lw-auth-reset-steps__num{font-size: 10px;font-weight: 700;letter-spacing: 0.06em;text-transform: uppercase;opacity: 0.85;}
.lw-auth-page .lw-auth-reset-steps__label{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.lw-auth-page .lw-auth-reset-steps__sep{flex: 1 1 auto;min-width: 12px;height: 1px;background: rgba(255, 255, 255, 0.1);}
.lw-auth-page .lw-auth-notice{margin: 0;padding: 12px 14px;border-radius: 10px;border: 1px solid rgba(255, 255, 255, 0.1);background: rgba(255, 255, 255, 0.04);font-size: 13px;line-height: 1.5;color: rgba(255, 255, 255, 0.62);}
.lw-auth-page .lw-auth-notice--success{border-color: rgba(124, 184, 138, 0.24);background: rgba(124, 184, 138, 0.08);color: rgba(230, 245, 234, 0.92);}
.lw-auth-page__sent{display: flex;flex-direction: column;gap: 14px;}
.lw-auth-page .lw-auth-reset-email-chip{display: flex;flex-direction: column;gap: 4px;margin: 0;padding: 12px 14px;border-radius: 10px;border: 1px solid rgba(255, 255, 255, 0.1);background: rgba(0, 0, 0, 0.28);}
.lw-auth-page .lw-auth-reset-email-chip__label{font-size: 11px;font-weight: 650;letter-spacing: 0.06em;text-transform: uppercase;color: rgba(255, 255, 255, 0.42);}
.lw-auth-page .lw-auth-reset-email-chip__value{font-size: 14px;font-weight: 600;line-height: 1.35;color: #fafafa;word-break: break-all;}
.lw-auth-page .lw-auth-reset-hint{margin: 0;font-size: 13px;line-height: 1.5;color: rgba(255, 255, 255, 0.48);}
.lw-auth-page .lw-auth-reset-resend{display: flex;flex-direction: column;gap: 12px;margin: 0;padding-top: 4px;}
.lw-auth-page .lw-auth-reset-resend__btn{appearance: none;-webkit-appearance: none;display: inline-flex;align-items: center;justify-content: center;align-self: flex-start;min-height: 40px;margin: 0;padding: 0 16px;border: 1px solid rgba(255, 255, 255, 0.12);border-radius: 999px;background: rgba(255, 255, 255, 0.04);color: #fafafa;font: inherit;font-size: 13px;font-weight: 600;line-height: 1.2;cursor: pointer;transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;}
.lw-auth-page .lw-auth-reset-resend__btn:hover:not(:disabled){background: rgba(255, 255, 255, 0.08);border-color: rgba(255, 255, 255, 0.2);}
.lw-auth-page .lw-auth-reset-resend__btn:disabled{opacity: 0.55;cursor: not-allowed;}
.lw-auth-page .lw-email-dialog__status{margin: 0;font-size: 13px;line-height: 1.45;}
@media (max-width: 480px) {
  .lw-auth-page .lw-auth-reset-steps{flex-wrap: wrap;}
  .lw-auth-page .lw-auth-reset-steps__sep{display: none;}
  .lw-auth-page .lw-auth-reset-resend__btn{align-self: stretch;width: 100%;}
}
