:root {
  --p24-blue: #155dfc;
  --p24-blue-2: #2e72ff;
  --p24-deep: #071226;
  --p24-title: #10234f;
  --p24-text: #17284e;
  --p24-muted: #667698;
  --p24-line: #dce6f7;
  --p24-soft: #f6f9ff;
  --p24-shadow: 0 18px 50px rgba(20,35,79,.075);
}

* {
  box-sizing: border-box;
}

body.p24-lk-page {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--p24-text);
  background:
    radial-gradient(circle at 88% 18%, rgba(21,93,252,.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.p24-lk-page a {
  color: inherit;
  text-decoration: none;
}

.p24-lk-shell {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.p24-lk-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.p24-lk-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--p24-title);
  font-weight: 950;
  font-size: 20px;
}

.p24-lk-logo {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1e72ff, #0a3dca);
  color: #fff;
  letter-spacing: -.05em;
  box-shadow: 0 10px 24px rgba(21,93,252,.28);
}

.p24-lk-header-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #405273;
  font-size: 14px;
  font-weight: 800;
}

.p24-lk-header-links a:hover {
  color: var(--p24-blue);
}

.p24-lk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .78fr);
  gap: 46px;
  align-items: center;
  padding: 48px 0 74px;
}

.p24-lk-hero {
  max-width: 680px;
}

.p24-lk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--p24-blue);
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 22px;
}

.p24-lk-hero h1 {
  margin: 0 0 20px;
  color: #0d1b36;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .99;
  letter-spacing: -.055em;
}

.p24-lk-hero p {
  margin: 0;
  color: #566684;
  font-size: 21px;
  line-height: 1.58;
}

.p24-lk-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.p24-lk-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--p24-line);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 32px rgba(20,35,79,.045);
}

.p24-lk-benefit-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #edf3ff;
  color: var(--p24-blue);
}

.p24-lk-benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p24-lk-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--p24-title);
}

.p24-lk-benefit span {
  color: #657594;
  font-size: 14px;
  line-height: 1.42;
}

.p24-lk-card {
  padding: 34px;
  border: 1px solid var(--p24-line);
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--p24-shadow);
}

.p24-lk-card h2 {
  margin: 0 0 10px;
  color: var(--p24-title);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.p24-lk-card-sub {
  margin: 0 0 24px;
  color: var(--p24-muted);
  font-size: 16px;
  line-height: 1.55;
}

.p24-lk-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.p24-lk-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.p24-lk-alert.success {
  background: #ecfdf3;
  color: #14532d;
  border: 1px solid #bbf7d0;
}

.p24-lk-form {
  display: grid;
  gap: 16px;
}

.p24-lk-field {
  display: grid;
  gap: 7px;
}

.p24-lk-field label {
  color: #24385f;
  font-size: 14px;
  font-weight: 850;
}

.p24-lk-field input,
.p24-lk-field select {
  width: 100%;
  height: 50px;
  border: 1px solid #d7e2f2;
  border-radius: 15px;
  padding: 0 15px;
  color: var(--p24-text);
  background: #f8fbff;
  font: inherit;
  outline: none;
}

.p24-lk-field input:focus,
.p24-lk-field select:focus {
  border-color: #98baff;
  box-shadow: 0 0 0 4px rgba(21,93,252,.10);
  background: #fff;
}

.p24-lk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.p24-lk-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #5d6d8d;
  font-size: 14px;
  line-height: 1.45;
}

.p24-lk-check input {
  margin-top: 3px;
}

.p24-lk-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #1c6bff, #0d46d9);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 14px 30px rgba(21,93,252,.24);
  font: inherit;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
}

.p24-lk-btn.secondary {
  background: #fff;
  color: var(--p24-blue) !important;
  -webkit-text-fill-color: var(--p24-blue);
  border: 1px solid #cfe0ff;
  box-shadow: none;
}

.p24-lk-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  color: #647497;
  font-size: 14px;
  flex-wrap: wrap;
}

.p24-lk-card-bottom a {
  color: var(--p24-blue);
  font-weight: 850;
}

.p24-lk-footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--p24-line);
  color: #6b7b99;
  font-size: 14px;
}

.p24-lk-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.p24-lk-footer a {
  color: var(--p24-title);
  font-weight: 850;
}

.p24-lk-dashboard {
  padding: 44px 0 74px;
}

.p24-lk-dashboard-card {
  padding: 34px;
  border: 1px solid var(--p24-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--p24-shadow);
}

.p24-lk-dashboard-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .p24-lk-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 24px;
  }

  .p24-lk-hero {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .p24-lk-shell {
    width: min(100% - 28px, 100%);
  }

  .p24-lk-header {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .p24-lk-header-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .p24-lk-layout {
    padding: 28px 0 54px;
  }

  .p24-lk-hero h1 {
    font-size: 40px;
  }

  .p24-lk-hero p {
    font-size: 18px;
  }

  .p24-lk-benefits,
  .p24-lk-grid-2 {
    grid-template-columns: 1fr;
  }

  .p24-lk-card {
    padding: 24px;
    border-radius: 26px;
  }

  .p24-lk-card h2 {
    font-size: 28px;
  }
}