.pricing-page h1,
.install-page h1 {
  font-size: var(--font-size-3xl);
  margin: var(--space-4) 0 var(--space-2);
}
.pricing-page > p,
.install-page > p:first-of-type {
  margin-bottom: var(--space-3);
  color: var(--muted);
}
.breadcrumb {
  opacity: .7;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}
.demo-note {
  border: 2px dashed var(--border);
  padding: var(--space-2);
  margin: var(--space-3) 0;
  color: var(--muted);
  font-size: var(--font-size-sm);
}

.login-body { min-height: 100dvh; }
.login-shell { display: flex; flex-direction: column; min-height: 100dvh; }
.login-header {
  padding: 1.5rem var(--content-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border);
}
.login-header .logo--login { flex: 1; justify-content: center; }
.login-header .lang-toggle { flex-shrink: 0; }
.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) var(--content-pad-x);
  width: 100%;
  max-width: none;
}
.login-split {
  width: min(900px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.login-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.login-subtitle {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: normal;
}
.auth-form { display: flex; flex-direction: column; }
.field-link {
  font-size: 0.8rem;
  opacity: 0.5;
  text-align: right;
  margin-top: 0.3rem;
  align-self: flex-end;
  text-transform: none;
  letter-spacing: normal;
}
.field-link:hover { opacity: 0.9; }
.login-alt {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
  margin-top: 1rem;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: none;
  letter-spacing: normal;
}
.login-alt a { border-bottom: 2px solid var(--border); }
.login-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-visual-card {
  border: 2px solid var(--border);
  padding: 2.5rem;
  width: 100%;
  max-width: 320px;
}
.lv-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.lv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.lv-brand {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.lv-desc {
  font-size: 0.85rem;
  opacity: 0.55;
  line-height: 1.65;
  text-transform: none;
  letter-spacing: normal;
}
@media (max-width: 640px) {
  .login-split { grid-template-columns: 1fr; }
  .login-visual-side { display: none; }
}
