:root {
  --pl-bg: #ffffff;
  --pl-bg-soft: #f7f2ff;
  --pl-brand: #3b0086;
  --pl-cta: #ff2a85;
  --pl-accent: #00d8ff;
  --pl-text: #1a1228;
  --pl-muted: #5a4d6e;
  --pl-line: rgba(59, 0, 134, 0.12);
  --pl-glass: rgba(255, 255, 255, 0.72);
  --pl-glass-border: rgba(59, 0, 134, 0.14);
  --pl-shadow: 0 18px 48px rgba(59, 0, 134, 0.1);
  --pl-radius: 22px;
  --pl-font-display: "Fredoka", sans-serif;
  --pl-font-body: "Mulish", sans-serif;
  --pl-max: 1120px;
  --pl-header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pl-body {
  margin: 0;
  font-family: var(--pl-font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pl-text);
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(0, 216, 255, 0.14), transparent 55%),
    radial-gradient(780px 460px at 96% 4%, rgba(255, 42, 133, 0.1), transparent 50%),
    radial-gradient(700px 420px at 70% 40%, rgba(59, 0, 134, 0.05), transparent 60%),
    var(--pl-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.pl-pill {
  font-family: var(--pl-font-display);
  line-height: 1.2;
  font-weight: 650;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  margin: 0 0 1rem;
  color: var(--pl-brand);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 1rem;
  color: var(--pl-brand);
}

p {
  margin: 0 0 1rem;
  color: var(--pl-muted);
}

p:last-child {
  margin-bottom: 0;
}

.pl-wrap {
  width: min(100% - 2rem, var(--pl-max));
  margin-inline: auto;
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--pl-font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pl-btn:hover {
  transform: translateY(-2px);
}

.pl-btn--cta {
  background: var(--pl-cta);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 42, 133, 0.28);
}

.pl-btn--cta:hover {
  box-shadow: 0 16px 34px rgba(255, 42, 133, 0.36);
}

.pl-btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(59, 0, 134, 0.18);
  color: var(--pl-brand);
  backdrop-filter: blur(10px);
}

.pl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pl-brand);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.pl-header.is-sticky {
  box-shadow: 0 10px 30px rgba(59, 0, 134, 0.28);
}

.pl-header__inner {
  min-height: var(--pl-header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pl-logo img {
  width: 150px;
  height: auto;
}

.pl-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.pl-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.pl-nav a:hover {
  color: var(--pl-accent);
}

.pl-nav__cta {
  color: #fff !important;
  margin-left: 0.35rem;
}

.pl-burger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
}

.pl-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pl-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pl-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.pl-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pl-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.pl-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(0, 216, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255, 42, 133, 0.14), transparent 26%),
    radial-gradient(circle at 60% 80%, rgba(59, 0, 134, 0.08), transparent 30%);
  animation: pl-float-soft 10s ease-in-out infinite alternate;
}

.pl-hero__inner {
  position: relative;
  max-width: 820px;
}

.pl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pl-glass-border);
  color: var(--pl-brand);
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(59, 0, 134, 0.06);
}

.pl-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pl-accent);
  box-shadow: 0 0 0 4px rgba(0, 216, 255, 0.2);
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.pl-section {
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.pl-section--soft {
  background: linear-gradient(180deg, rgba(247, 242, 255, 0.7), rgba(255, 255, 255, 0));
}

.pl-section__head {
  margin-bottom: 1.1rem;
}

.pl-glass {
  background: var(--pl-glass);
  border: 1px solid var(--pl-glass-border);
  border-radius: var(--pl-radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  backdrop-filter: blur(14px);
  box-shadow: var(--pl-shadow);
}

.pl-panel {
  border-radius: calc(var(--pl-radius) + 4px);
  padding: clamp(1.4rem, 3.4vw, 2.2rem);
}

.pl-panel--purple {
  background:
    linear-gradient(145deg, rgba(59, 0, 134, 0.96), rgba(59, 0, 134, 0.88)),
    radial-gradient(circle at 90% 10%, rgba(0, 216, 255, 0.35), transparent 40%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(59, 0, 134, 0.28);
}

.pl-panel--purple h2,
.pl-panel--purple p {
  color: #fff;
}

.pl-panel--purple p {
  color: rgba(255, 255, 255, 0.9);
}

.pl-panel--purple .pl-btn--cta {
  margin-top: 1rem;
}

.pl-figure {
  margin: 1.5rem 0 0;
  padding: 0;
}

.pl-figure img {
  width: 100%;
  border-radius: var(--pl-radius);
  border: 1px solid var(--pl-glass-border);
  box-shadow: var(--pl-shadow);
  background: #fff;
}

.pl-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--pl-muted);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(0, 216, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.2);
}

.pl-faq__list {
  display: grid;
  gap: 0.85rem;
}

.pl-faq__item {
  background: var(--pl-glass);
  border: 1px solid var(--pl-glass-border);
  border-radius: 18px;
  padding: 0.35rem 1rem 0.35rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(59, 0, 134, 0.06);
  overflow: hidden;
}

.pl-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--pl-font-display);
  font-weight: 600;
  color: var(--pl-brand);
  padding: 0.95rem 2rem 0.95rem 0;
  position: relative;
}

.pl-faq__item summary::-webkit-details-marker {
  display: none;
}

.pl-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 42, 133, 0.12);
  color: var(--pl-cta);
  font-size: 1.1rem;
  line-height: 1;
}

.pl-faq__item[open] summary::after {
  content: "–";
  background: rgba(0, 216, 255, 0.16);
  color: var(--pl-brand);
}

.pl-faq__item p {
  padding-bottom: 1rem;
}

.pl-footer {
  margin-top: 1rem;
  background: var(--pl-brand);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.pl-footer__inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.pl-footer__note,
.pl-footer__copy {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 52ch;
}

.pl-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.pl-footer__nav a {
  color: #fff;
  font-weight: 600;
}

.pl-footer__nav a:hover {
  color: var(--pl-accent);
}

.pl-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--pl-cta);
  color: #fff;
  font-family: var(--pl-font-display);
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(255, 42, 133, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.pl-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pl-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.pl-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pl-float-soft {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@media (max-width: 920px) {
  .pl-burger {
    display: block;
  }

  .pl-nav {
    position: fixed;
    inset: var(--pl-header-h) 0 auto 0;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(59, 0, 134, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .pl-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .pl-nav a {
    padding: 0.75rem 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pl-nav__cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .pl-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pl-float {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pl-hero__blobs,
  .pl-reveal,
  .pl-float,
  .pl-btn {
    animation: none;
    transition: none;
  }

  .pl-reveal {
    opacity: 1;
    transform: none;
  }
}
