/* Public partner program landing — blik marketing surface */

.pl-body {
  --pl-font: "Space Grotesk", var(--font-sans);
  --pl-display: "Orbitron", var(--font-sans);
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  background:
    radial-gradient(900px 560px at 12% -10%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(700px 480px at 95% 8%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(20, 184, 166, 0.08), transparent 45%),
    var(--bg);
  color: var(--white);
  font-family: var(--pl-font);
  font-size: 16px;
  line-height: 1.5;
}

.pl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.pl-brand {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.pl-brand .brand-wordmark {
  height: 26px;
  width: auto;
  display: block;
}

.pl-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pl-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.pl-link:hover {
  color: var(--white);
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: opacity 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.pl-btn:hover {
  opacity: 0.92;
}

.pl-btn-primary {
  background: var(--grad);
  color: #fff;
}

.pl-btn-ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--white);
}

.pl-btn-ghost:hover {
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
  opacity: 1;
}

.pl-btn-lg {
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
}

.pl-hero {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 20px 88px;
  text-align: center;
  min-height: calc(100vh - 56px);
  min-height: calc(100dvh - 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pl-kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.pl-hero-title {
  margin: 0;
  line-height: 1;
}

.pl-hero-wordmark {
  display: block;
  width: min(200px, 52vw);
  aspect-ratio: 586 / 204;
  height: auto;
  min-height: clamp(36px, 7vw, 52px);
  margin: 0 auto;
  background: var(--grad);
  -webkit-mask-image: url("/static/blik-wordmark.png");
  mask-image: url("/static/blik-wordmark.png");
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.pl-hero-lead {
  margin: 20px 0 0;
  max-width: 520px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.45;
}

.pl-invite {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--chip-text);
}

.pl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.pl-scroll-hint {
  position: fixed;
  left: 50%;
  bottom: clamp(52px, 10vh, 84px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #22D3EE;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  cursor: pointer;
  z-index: 20;
}

.pl-scroll-hint:hover {
  color: #7C3AED;
}

.pl-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.pl-scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.35));
}

.pl-scroll-arrow svg {
  display: block;
}

.pl-scroll-arrow.two {
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .pl-scroll-arrow.one {
    animation: pl-arrow-down 2s ease infinite;
  }

  .pl-scroll-arrow.two {
    animation: pl-arrow-down 2s ease 1s infinite;
  }
}

@keyframes pl-arrow-down {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}

.pl-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 20px;
}

.pl-section h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pl-section-lead {
  margin: 0 0 28px;
  color: var(--gray);
  max-width: 560px;
  font-size: 15.5px;
}

.pl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pl-step {
  padding: 4px 0;
}

.pl-step-num {
  display: block;
  font-family: var(--pl-display);
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.pl-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.pl-step p {
  margin: 0;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.5;
}

.pl-section-income {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pl-income {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pl-income-card {
  padding: 8px 0;
}

.pl-income-pct {
  font-family: var(--pl-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.pl-income-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.pl-income-card p {
  margin: 0;
  color: var(--gray);
  font-size: 14.5px;
}

.pl-example {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 2px solid rgba(124, 58, 237, 0.55);
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.pl-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.pl-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-body);
  font-size: 15px;
}

.pl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.pl-final {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  text-align: center;
}

.pl-final h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.pl-final p {
  margin: 0;
  color: var(--gray);
  font-size: 15.5px;
}

.pl-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 32px 20px 48px;
  color: var(--gray);
  font-size: 13px;
}

.pl-foot a {
  color: var(--gray);
  text-decoration: none;
}

.pl-foot a:hover {
  color: var(--white);
}

@media (max-width: 720px) {
  .pl-hero {
    padding: 48px 20px 72px;
    min-height: calc(100vh - 52px);
    min-height: calc(100dvh - 52px);
    align-items: flex-start;
    text-align: left;
  }

  .pl-hero-wordmark {
    margin-left: 0;
  }

  .pl-scroll-hint {
    bottom: clamp(44px, 9vh, 72px);
  }

  .pl-cta-row {
    justify-content: flex-start;
    width: 100%;
  }

  .pl-cta-row .pl-btn {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .pl-steps,
  .pl-income {
    grid-template-columns: 1fr;
  }

  .pl-nav-actions .pl-btn-primary {
    display: none;
  }

  .pl-final {
    text-align: left;
  }

  .pl-final .pl-cta-row {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .pl-hero-title {
    animation: pl-fade-up 0.7s ease both;
  }

  .pl-hero-lead {
    animation: pl-fade-up 0.7s ease 0.08s both;
  }

  .pl-cta-row {
    animation: pl-fade-up 0.7s ease 0.16s both;
  }

  .pl-step,
  .pl-income-card {
    transition: transform 0.2s ease;
  }

  .pl-step:hover,
  .pl-income-card:hover {
    transform: translateY(-2px);
  }
}

@keyframes pl-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
