/* ERP 登录页 — 视觉语言对齐 rayjoyscm.com/cms */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.login-portal {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
}

/* 海天渐变背景 */
.lp-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    175deg,
    #e8f4fd 0%,
    #cce8f8 12%,
    #a8d8f4 25%,
    #7ec4ee 38%,
    #52aee6 50%,
    #2e96d8 60%,
    #1a7ec0 68%,
    #1268a8 76%,
    #0d5490 84%,
    #093f72 92%,
    #062d54 100%
  );
}

.lp-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 30% at 72% 6%, rgba(255, 240, 180, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse 35% 18% at 72% 2%, rgba(255, 220, 100, 0.45) 0%, transparent 45%),
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse 25% 12% at 15% 8%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.lp-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(4, 20, 45, 0.35) 0%, transparent 100%);
}

.lp-clouds {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.cloud { position: absolute; }

.cloud-1 { top: 3%; left: -300px; animation: cloudDrift 60s linear infinite; opacity: 0.88; }
.cloud-2 { top: 9%; left: -250px; animation: cloudDrift 90s linear infinite; animation-delay: -35s; opacity: 0.65; }
.cloud-3 { top: 1%; left: -180px; animation: cloudDrift 75s linear infinite; animation-delay: -50s; opacity: 0.72; }
.cloud-4 { top: 14%; left: -200px; animation: cloudDrift 110s linear infinite; animation-delay: -20s; opacity: 0.45; }

@keyframes cloudDrift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 500px)); }
}

.lp-deco {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ship-cargo {
  position: absolute;
  animation: shipSail linear infinite;
  transform-origin: center bottom;
}

.ship-cargo-1 { bottom: 20%; animation-duration: 100s; }
.ship-cargo-2 { bottom: 24%; animation-duration: 145s; animation-delay: -65s; opacity: 0.65; }

@keyframes shipSail {
  from { left: -420px; }
  to { left: calc(100vw + 420px); }
}

.lp-waves {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  height: 100px;
}

.wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
}

.wave-layer svg { width: 100%; height: 100%; }

.wave-1 { animation: waveScroll 9s linear infinite; opacity: 0.45; }
.wave-2 { animation: waveScroll 14s linear infinite reverse; opacity: 0.3; bottom: 8px; }
.wave-3 { animation: waveScroll 7s linear infinite; opacity: 0.18; bottom: 18px; }

@keyframes waveScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-particles {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-22px) scale(1.3); opacity: 0.25; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}

.lp-gulls {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.gull { position: absolute; animation: gullFly linear infinite; }

.gull-1 { top: 8%; left: -80px; animation-duration: 28s; }
.gull-2 { top: 12%; left: -120px; animation-duration: 36s; animation-delay: -14s; opacity: 0.7; }
.gull-3 { top: 6%; left: -60px; animation-duration: 22s; animation-delay: -8s; opacity: 0.55; }

@keyframes gullFly {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(25vw) translateY(-12px); }
  50% { transform: translateX(50vw) translateY(0); }
  75% { transform: translateX(75vw) translateY(-8px); }
  100% { transform: translateX(calc(100vw + 100px)) translateY(0); }
}

.lp-shell {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 44px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 20px rgba(0, 60, 130, 0.08);
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.lp-brand img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 80, 180, 0.18));
}

.lp-brand-sep {
  width: 1px;
  height: 34px;
  background: rgba(10, 60, 130, 0.2);
}

.lp-brand-name {
  font-size: 15px;
  font-weight: 800;
  color: #0a2d52;
  letter-spacing: 0.02em;
}

.lp-brand-sub {
  font-size: 11px;
  color: rgba(10, 45, 82, 0.45);
  margin-top: 2px;
  letter-spacing: 0.08em;
}

.lp-topbar-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #0a3d6e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lp-topbar-tag svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(380px, 440px) minmax(340px, 1fr);
  gap: 52px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 44px 120px;
}

.lp-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0, 50, 120, 0.2),
    0 10px 30px rgba(0, 70, 150, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(36px);
  overflow: hidden;
}

.lp-card-head {
  padding: 26px 30px 22px;
  background: linear-gradient(135deg, #1a96e0 0%, #0a62a8 50%, #084e8a 100%);
  position: relative;
  overflow: hidden;
}

.lp-card-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,20 Q10,10 20,20 Q30,30 40,20 Q50,10 60,20 Q70,30 80,20' fill='none' stroke='%23ffffff' stroke-width='0.6' stroke-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 80px 40px;
}

.lp-card-head::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.lp-card-head-inner { position: relative; z-index: 1; }

.lp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.lp-card-badge svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-card-head h1 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  letter-spacing: -0.01em;
}

.lp-card-head p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
}

.lp-card-body { padding: 26px 30px 28px; }

.lp-field { margin-bottom: 16px; }

.lp-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  color: #0a3d6e;
  font-size: 13px;
  font-weight: 700;
}

.lp-label svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
}

.lp-input-wrap { position: relative; }

.lp-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(240, 248, 255, 0.9);
  border: 1.5px solid rgba(0, 100, 200, 0.14);
  border-radius: 13px;
  color: #0a3d6e;
  font-size: 14px;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  box-shadow: 0 1px 6px rgba(0, 60, 130, 0.06), inset 0 1px 3px rgba(0, 60, 130, 0.04);
}

.lp-input::placeholder { color: rgba(10, 61, 110, 0.3); }

.lp-input:focus {
  border-color: #1a96e0;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(26, 150, 224, 0.18), 0 2px 12px rgba(0, 80, 160, 0.1);
}

.lp-input:hover:not(:focus) {
  border-color: rgba(0, 100, 200, 0.25);
  background: rgba(240, 248, 255, 0.96);
}

.lp-input.is-invalid {
  border-color: rgba(220, 50, 50, 0.45);
  box-shadow: 0 0 0 3.5px rgba(220, 50, 50, 0.12);
}

.lp-input-wrap.has-toggle .lp-input { padding-right: 48px; }

.lp-toggle-pwd {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #7b8aa1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.lp-toggle-pwd:hover {
  color: #1a96e0;
  background: rgba(26, 150, 224, 0.1);
}

.lp-toggle-pwd svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.lp-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px 42px;
  gap: 9px;
  align-items: center;
}

.lp-captcha-img {
  display: block;
  width: 138px;
  height: 46px;
  border: 1.5px solid rgba(0, 100, 200, 0.13);
  border-radius: 12px;
  background: rgba(240, 248, 255, 0.8);
  cursor: pointer;
  object-fit: cover;
}

.lp-captcha-btn {
  height: 48px;
  width: 44px;
  border: 1.5px solid rgba(0, 100, 200, 0.14);
  border-radius: 13px;
  background: rgba(0, 100, 200, 0.05);
  color: #1a96e0;
  cursor: pointer;
  transition: background 0.22s, transform 0.3s, box-shadow 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-captcha-btn:hover {
  background: rgba(0, 100, 200, 0.12);
  transform: rotate(90deg);
  box-shadow: 0 3px 10px rgba(0, 100, 200, 0.15);
}

.lp-captcha-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-field-error {
  display: none;
  margin-top: 6px;
  color: #c0392b;
  font-size: 12px;
}

.lp-field-error.show { display: block; }

.lp-field-note {
  margin-top: 6px;
  color: rgba(10, 61, 110, 0.35);
  font-size: 11px;
  line-height: 1.7;
}

.lp-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.lp-btn {
  flex: 1;
  height: 52px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
}

.lp-btn:active { transform: scale(0.95) translateY(0) !important; }

.lp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1a96e0 0%, #0a62a8 100%);
  box-shadow:
    0 6px 24px rgba(0, 130, 200, 0.38),
    0 2px 8px rgba(0, 80, 160, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lp-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

.lp-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  animation: lpBtnShine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lpBtnShine {
  0% { left: -100%; }
  50% { left: 140%; }
  100% { left: 140%; }
}

.lp-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #2aa8f0 0%, #1272bc 100%);
  box-shadow:
    0 10px 32px rgba(0, 130, 200, 0.48),
    0 4px 14px rgba(0, 80, 160, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.lp-btn-primary:disabled {
  opacity: 0.72;
  cursor: wait;
}

.lp-btn-secondary {
  color: #0a5fa0;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(0, 100, 200, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 60, 130, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 100, 200, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 60, 130, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lp-sso-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(9, 145, 178, 0.07) 0%, rgba(2, 132, 199, 0.1) 100%);
  border: 1px solid rgba(8, 145, 178, 0.22);
  position: relative;
  overflow: hidden;
}

.lp-sso-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lp-sso-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a96e0, #0a62a8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 130, 200, 0.25);
}

.lp-sso-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-sso-title {
  font-size: 13px;
  font-weight: 800;
  color: #0c406f;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-sso-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a96e0, #0a62a8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lp-sso-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: #537491;
}

.lp-note {
  margin-top: 13px;
  color: rgba(10, 61, 110, 0.35);
  font-size: 11px;
  line-height: 2;
}

.lp-side-hero {
  padding: 38px 38px 32px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  box-shadow:
    0 20px 56px rgba(0, 50, 120, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.38) inset;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #0a4d8a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
}

.lp-kicker::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #1a96e0, transparent);
  border-radius: 1px;
}

.lp-side-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  color: #0a2040;
  margin: 0 0 13px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.55);
}

.lp-side-title em {
  font-style: normal;
  background: linear-gradient(90deg, #0a7fd4 0%, #00c4e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-side-desc {
  color: rgba(10, 40, 75, 0.58);
  font-size: 13px;
  line-height: 2.15;
  margin: 0 0 26px;
}

.lp-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-bottom: 26px;
}

.lp-point {
  padding: 16px 17px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 60, 130, 0.07);
}

.lp-point:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(26, 150, 224, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 80, 160, 0.14);
}

.lp-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1a96e0, #0a62a8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(0, 130, 200, 0.24);
}

.lp-point-icon svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-point strong {
  display: block;
  color: #0a2040;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lp-point span {
  color: rgba(10, 40, 75, 0.52);
  font-size: 11px;
  line-height: 1.8;
}

.lp-side-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 148px;
  height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  border: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.lp-side-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-side-btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  box-shadow:
    0 6px 22px rgba(245, 158, 11, 0.4),
    0 2px 8px rgba(217, 119, 6, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-side-btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(245, 158, 11, 0.5),
    0 4px 14px rgba(217, 119, 6, 0.28);
}

.lp-side-btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  color: #0a4d8a;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 50, 120, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lp-side-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 50, 120, 0.12);
}

.lp-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px 18px 32px;
}

.lp-footer-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 760px);
  padding: 16px 24px 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(4, 30, 70, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-footer-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lp-footer-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
}

.lp-footer-link {
  font-size: 12px;
  font-weight: 600;
  color: #b8e8ff;
  text-decoration: none;
}

.lp-footer-link:hover { opacity: 0.85; }

@media (max-width: 1100px) {
  .lp-main {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 520px;
    padding: 30px 22px 120px;
  }

  .lp-side { order: -1; }
  .lp-side-title { font-size: 28px; }
}

@media (max-width: 640px) {
  .lp-topbar {
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .lp-brand-sep { display: none; }

  .lp-topbar-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    border-radius: 16px;
  }

  .lp-main { padding: 20px 14px 120px; max-width: 100%; }
  .lp-points { grid-template-columns: 1fr; }
  .lp-captcha-row { grid-template-columns: 1fr; }
  .lp-captcha-img, .lp-captcha-btn { width: 100%; }
  .lp-side-title { font-size: 22px; }
  .lp-side-hero { padding: 24px 20px 22px; }
  .lp-card-head h1 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .cloud, .ship-cargo, .gull, .wave-layer, .particle,
  .lp-btn-primary::after { animation: none !important; }
}
