@keyframes plPulse {
  50% { opacity: 0.35; transform: scale(0.85); }
}

@keyframes plIn {
  to { opacity: 1; transform: none; }
}

:root {
  --pl-bg: #0d1014;
  --pl-bg-2: #121821;
  --pl-card: rgba(255, 255, 255, 0.055);
  --pl-card-2: rgba(255, 255, 255, 0.085);
  --pl-text: #f4f2ec;
  --pl-muted: rgba(244, 242, 236, 0.68);
  --pl-faint: rgba(244, 242, 236, 0.42);
  --pl-line: rgba(244, 242, 236, 0.13);
  --pl-line-strong: rgba(244, 242, 236, 0.24);
  --pl-teal: #66e3d4;
  --pl-green: #99e66d;
  --pl-orange: #ff9b54;
  --pl-red: #ff6b6b;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(102, 227, 212, 0.12), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(255, 155, 84, 0.10), transparent 26rem),
    var(--pl-bg);
  color: var(--pl-text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  z-index: -1;
}

body a { color: inherit; }

.pl-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.pl-section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.pl-section--panel {
  padding: clamp(48px, 8vw, 96px) 0;
}

.pl-kicker {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-teal);
}

.pl-section__title {
  margin: 0;
  max-width: 12ch;
  color: var(--pl-text);
  font-family: var(--font-ui);
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.pl-muted {
  margin-top: 20px;
  max-width: 38ch;
  color: var(--pl-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.pl-hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: center;
  padding-top: clamp(72px, 10vh, 120px);
}

.pl-hero__grid {
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

@media (min-width: 920px) {
  .pl-hero__copy {
    max-width: 980px;
  }
}

.pl-hero__copy {
  max-width: 760px;
}

.pl-hero__title {
  margin: 0;
  color: var(--pl-text);
  font-family: var(--font-ui);
  font-size: clamp(3.4rem, 10.5vw, 8.7rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-wrap: balance;
}

.pl-hero__lead {
  margin: 26px 0 0;
  max-width: 54ch;
  color: var(--pl-muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pl-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pl-line-strong);
  border-radius: 14px;
  padding: 13px 18px;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.pl-btn:hover {
  transform: translateY(-1px);
  color: var(--pl-text);
}

.pl-btn--primary {
  background: linear-gradient(135deg, var(--pl-teal), #c8ff8b);
  color: #071014;
  border-color: transparent;
}

.pl-btn--primary:hover { color: #071014; }

.pl-btn--ghost {
  background: rgba(255,255,255,0.045);
  color: var(--pl-text);
}

.pl-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--pl-faint);
  font-family: var(--font-mono);
  font-size: 0.86rem;
}

.pl-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pl-green);
  box-shadow: 0 0 20px rgba(153,230,109,0.75);
  animation: plPulse 1.8s ease-in-out infinite;
}

.pl-fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

@media (min-width: 720px) {
  .pl-fix-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.pl-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--pl-line);
  border-radius: 24px;
  background: var(--pl-card);
}

.pl-card__code {
  width: fit-content;
  color: var(--pl-teal);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.pl-card h3 {
  margin: 34px 0 12px;
  color: var(--pl-text);
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.pl-card p {
  margin: 0;
  max-width: 34ch;
  color: var(--pl-muted);
  font-size: 1.02rem;
  line-height: 1.42;
}

.pl-how {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--pl-line-strong);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(102,227,212,0.11), rgba(255,155,84,0.08));
}

@media (min-width: 860px) {
  .pl-how { grid-template-columns: 0.9fr 1.1fr; align-items: end; }
}

.pl-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  color: var(--pl-muted);
}

.pl-steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--pl-text);
  color: var(--pl-bg);
}

.pl-proof {
  padding-top: 0;
}

.pl-proof-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 760px) {
  .pl-proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.pl-proof-grid p {
  margin: 0;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--pl-line);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  color: var(--pl-text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.pl-proof-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--pl-teal);
  font-size: 0.78rem;
}

.pl-contact {
  padding-bottom: clamp(56px, 8vw, 100px);
}

.pl-contact__grid {
  display: grid;
  gap: 34px;
  align-items: start;
}

@media (min-width: 920px) {
  .pl-contact__grid { grid-template-columns: 0.88fr 1.12fr; }
}

.pl-contact__lead {
  margin-top: 20px;
  max-width: 36ch;
  color: var(--pl-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.36;
}

.pl-email {
  margin-top: 22px;
  color: var(--pl-teal);
}

.pl-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--pl-line-strong);
  border-radius: 28px;
  background: var(--pl-card-2);
}

.pl-form label {
  color: var(--pl-faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pl-form input,
.pl-form textarea {
  width: 100%;
  border: 1px solid var(--pl-line-strong);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--pl-text);
  font: inherit;
  padding: 14px 16px;
}

.pl-form textarea {
  min-height: 150px;
  resize: vertical;
}

.pl-form input::placeholder,
.pl-form textarea::placeholder {
  color: rgba(244, 242, 236, 0.56);
}

.pl-form .pl-btn {
  margin-top: 8px;
  width: fit-content;
  border: 0;
}

.pl-form__note {
  margin: 8px 0 0;
  color: var(--pl-faint);
  font-size: 0.9rem;
}

.field-error {
  color: var(--pl-red);
  font-size: 0.9rem;
}

.contact-status {
  display: block;
  color: var(--pl-muted);
  font-size: 0.9rem;
}

.contact-status[hidden] { display: none; }
.contact-status--success { color: var(--pl-green); }
.contact-status--error,
.contact-status--captcha { color: var(--pl-red); }
.contact-status__link,
.contact-status__action { color: inherit; }

.op-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .pl-wrap { width: min(100% - 28px, 1120px); }
  .pl-section { padding: 58px 0; }
  .pl-hero { min-height: auto; padding-top: 64px; }
  .pl-hero__title { font-size: clamp(3.1rem, 18vw, 4.8rem); }
  .pl-section__title { font-size: clamp(2.35rem, 14vw, 4rem); }
  .pl-btn { width: 100%; }
  .pl-status { align-items: flex-start; }
  .pl-card { min-height: 190px; }
}

@media (prefers-reduced-motion: no-preference) {
  .pl-hero__copy {
    opacity: 0;
    transform: translateY(12px);
    animation: plIn 560ms ease-out forwards;
  }
}
