.landing-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.landing-shell::before {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  background: #f3f1e9;
}

.site-ambient {
  opacity: .44;
}

.topbar {
  height: 88px;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(11, 23, 20, .1);
  background: rgba(247, 246, 240, .88);
  box-shadow: 0 12px 36px rgba(7, 43, 35, .04);
  backdrop-filter: blur(22px);
}

.topbar .brand {
  color: #0b1714;
  font-size: 1.02rem;
}

.topbar .brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 14px 14px 14px 5px;
  background: linear-gradient(145deg, #36c5a1, #08735e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 10px 24px rgba(7, 63, 53, .18);
}

.topbar-actions nav {
  gap: 6px;
}

.topbar-actions nav a,
.topbar .link-button {
  padding: 9px 12px;
  border-radius: 10px;
  color: #34443f;
  font-size: .86rem;
  font-weight: 750;
}

.topbar-actions nav a:hover,
.topbar .link-button:hover {
  color: #073f35;
  background: rgba(12, 118, 95, .08);
}

.topbar-actions .nav-cta {
  margin-left: 5px;
  padding: 11px 16px;
  color: #fff;
  border: 1px solid transparent;
  background: #073f35;
}

.topbar-actions .nav-cta:hover {
  color: #fff;
  background: #0c765f;
}

.topbar .theme-toggle {
  min-height: 42px;
  border-color: rgba(11, 23, 20, .12);
  background: rgba(255, 255, 255, .64);
}

.pl-page {
  --pl-ink: #0b1714;
  --pl-ink-soft: #34443f;
  --pl-muted: #687570;
  --pl-paper: #f3f1e9;
  --pl-paper-bright: #fbfaf6;
  --pl-paper-green: #e8f0ea;
  --pl-forest: #073f35;
  --pl-forest-deep: #041d18;
  --pl-emerald: #0c765f;
  --pl-mint: #51d9b6;
  --pl-lime: #d8ff77;
  --pl-line: rgba(11, 23, 20, .13);
  --pl-line-light: rgba(255, 255, 255, .14);
  --pl-shadow-sm: 0 12px 34px rgba(10, 35, 28, .08);
  --pl-shadow-lg: 0 34px 90px rgba(4, 29, 24, .18);
  position: relative;
  color: var(--pl-ink);
  background:
    radial-gradient(circle at 82% 3%, rgba(81, 217, 182, .18), transparent 26%),
    linear-gradient(rgba(7, 63, 53, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 53, .025) 1px, transparent 1px),
    var(--pl-paper);
  background-size: auto, 48px 48px, 48px 48px, auto;
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

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

.pl-page h1,
.pl-page h2,
.pl-page h3,
.pl-page p {
  margin-top: 0;
}

.pl-container {
  width: min(1240px, calc(100vw - 48px));
  margin-inline: auto;
}

.pl-section-nav {
  position: sticky;
  top: 80px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 46px;
  border-bottom: 1px solid rgba(11, 23, 20, .08);
  background: rgba(247, 246, 240, .9);
  backdrop-filter: blur(18px);
}

.pl-section-nav a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--pl-ink-soft);
  font-size: .82rem;
  font-weight: 750;
}

.pl-section-nav a:hover {
  color: var(--pl-forest);
  background: rgba(12, 118, 95, .08);
}

.pl-eyebrow,
.pl-kicker {
  margin-bottom: 18px;
  color: var(--pl-emerald);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pl-eyebrow::before,
.pl-kicker::before {
  display: inline-block;
  width: 22px;
  height: 2px;
  margin: 0 10px 3px 0;
  content: "";
  background: currentColor;
}

.pl-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px 12px 12px 4px;
  font-size: .9rem;
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.pl-button span {
  transition: transform 180ms ease;
}

.pl-button:hover span {
  transform: translateX(4px);
}

.pl-button-primary {
  color: #fff;
  background: var(--pl-forest);
  box-shadow: 0 16px 36px rgba(7, 63, 53, .18);
}

.pl-button-primary:hover {
  color: #fff;
  background: var(--pl-emerald);
  box-shadow: 0 20px 42px rgba(7, 63, 53, .24);
}

.pl-button-secondary {
  color: var(--pl-ink);
  border-color: var(--pl-line);
  background: rgba(255, 255, 255, .62);
}

.pl-button-secondary:hover {
  color: var(--pl-forest);
  border-color: rgba(12, 118, 95, .35);
  background: #fff;
}

.pl-button-lime {
  color: var(--pl-forest-deep);
  background: var(--pl-lime);
  box-shadow: 0 16px 34px rgba(216, 255, 119, .12);
}

.pl-button-lime:hover {
  color: var(--pl-forest-deep);
  background: #e4ff9c;
  box-shadow: 0 20px 40px rgba(216, 255, 119, .2);
}

.pl-button-wide {
  width: 100%;
}

.pl-hero {
  position: relative;
  min-height: 760px;
  padding: 108px 0 88px;
  overflow: hidden;
}

.pl-hero::before {
  position: absolute;
  top: -300px;
  left: 50%;
  width: 980px;
  height: 760px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(81, 217, 182, .23), transparent 68%);
  transform: translateX(-12%);
  pointer-events: none;
}

.pl-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  gap: clamp(48px, 7vw, 96px);
}

.pl-hero-copy {
  position: relative;
  z-index: 2;
  animation: pl-rise .7s cubic-bezier(.2, .75, .25, 1) both;
}

.pl-hero h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--pl-ink);
  font-size: clamp(3.35rem, 5.6vw, 5.2rem);
  font-weight: 820;
  letter-spacing: -.067em;
  line-height: .99;
}

.pl-hero h1 span {
  display: block;
  color: var(--pl-emerald);
}

.pl-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--pl-ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
}

.pl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pl-micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: var(--pl-muted);
  font-size: .8rem;
  font-weight: 650;
}

.pl-micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pl-micro-proof span::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: var(--pl-forest);
  background: rgba(81, 217, 182, .28);
  font-size: .62rem;
  font-weight: 900;
}

.pl-stage {
  position: relative;
  min-height: 550px;
  perspective: 1300px;
}

.pl-stage-note {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--pl-muted);
  background: rgba(255, 255, 255, .62);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.pl-stage-halo {
  position: absolute;
  inset: 8% 2% 2% 8%;
  border-radius: 45%;
  background: radial-gradient(circle at 48% 42%, rgba(81, 217, 182, .35), rgba(12, 118, 95, .08) 44%, transparent 70%);
  filter: blur(8px);
}

.pl-conversion-window {
  position: absolute;
  inset: 40px 0 28px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px 28px 28px 9px;
  color: #ecfff8;
  background:
    radial-gradient(circle at 72% 18%, rgba(81, 217, 182, .18), transparent 34%),
    linear-gradient(145deg, #0a463b, var(--pl-forest-deep) 62%);
  box-shadow: var(--pl-shadow-lg);
  transform: rotateY(-4deg) rotateX(2deg);
  animation: pl-window-in .9s cubic-bezier(.2, .75, .25, 1) .12s both;
}

.pl-window-bar {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--pl-line-light);
  background: rgba(4, 29, 24, .36);
}

.pl-window-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.pl-window-title::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--pl-mint);
  box-shadow: 0 0 0 6px rgba(81, 217, 182, .13);
  animation: pl-pulse 2.8s ease-in-out 3;
}

.pl-window-controls {
  display: flex;
  gap: 6px;
}

.pl-window-controls i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.pl-conversion-flow {
  display: grid;
  min-height: 405px;
  align-items: center;
  padding: 34px 27px 28px;
  grid-template-columns: minmax(0, .95fr) 70px minmax(0, 1fr);
  gap: 12px;
}

.pl-document-card,
.pl-coda-card {
  position: relative;
  min-height: 280px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px 18px 18px 6px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}

.pl-document-card {
  animation: pl-card-left .85s cubic-bezier(.2, .75, .25, 1) .38s both;
}

.pl-coda-card {
  animation: pl-card-right .85s cubic-bezier(.2, .75, .25, 1) .7s both;
}

.pl-file-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.pl-file-heading strong {
  max-width: 145px;
  overflow: hidden;
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pl-file-heading span,
.pl-coda-status {
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--pl-lime);
  background: rgba(216, 255, 119, .09);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.pl-paper-line {
  height: 8px;
  margin: 11px 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, .13);
}

.pl-paper-line:nth-child(2n) { width: 82%; }
.pl-paper-line:nth-child(3n) { width: 64%; }

.pl-paper-status {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  color: rgba(236, 255, 248, .7);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: .62rem;
}

.pl-scan-beam {
  position: absolute;
  top: 58px;
  right: 12px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pl-lime), transparent);
  box-shadow: 0 0 18px rgba(216, 255, 119, .8);
  animation: pl-scan 3.8s ease-in-out .8s 2;
}

.pl-flow-bridge {
  position: relative;
  display: grid;
  height: 140px;
  place-items: center;
}

.pl-flow-bridge::before {
  width: 100%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--pl-mint) 0 6px, transparent 6px 12px);
  background-size: 24px 1px;
  animation: pl-flow 1s linear 7;
}

.pl-flow-bridge span {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(81, 217, 182, .36);
  border-radius: 50%;
  color: var(--pl-forest-deep);
  background: var(--pl-mint);
  box-shadow: 0 0 0 9px rgba(81, 217, 182, .1);
  font-weight: 900;
}

.pl-coda-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pl-coda-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--pl-lime);
}

.pl-coda-line {
  display: grid;
  margin-inline: -4px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(236, 255, 248, .64);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: .58rem;
  grid-template-columns: 22px 1fr auto;
  gap: 8px;
}

.pl-coda-line span:first-child { color: var(--pl-mint); }
.pl-coda-line b { color: #fff; font-weight: 600; }

.pl-floating-status {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 4;
  display: flex;
  width: 236px;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(7, 63, 53, .12);
  border-radius: 15px 15px 15px 5px;
  background: rgba(251, 250, 246, .94);
  box-shadow: var(--pl-shadow-sm);
  backdrop-filter: blur(14px);
  animation: pl-float 4s ease-in-out 3;
}

.pl-status-check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: var(--pl-forest);
  background: var(--pl-lime);
  font-weight: 900;
}

.pl-floating-status strong,
.pl-floating-status small {
  display: block;
}

.pl-floating-status strong {
  color: var(--pl-ink);
  font-size: .78rem;
}

.pl-floating-status small {
  color: var(--pl-muted);
  font-size: .64rem;
}

.pl-proof-rail {
  border-block: 1px solid var(--pl-line);
  background: rgba(251, 250, 246, .6);
}

.pl-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pl-proof-item {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 24px clamp(15px, 2.5vw, 32px);
  border-right: 1px solid var(--pl-line);
}

.pl-proof-item:last-child {
  border-right: 0;
}

.pl-proof-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(12, 118, 95, .15);
  border-radius: 12px;
  color: var(--pl-emerald);
  background: rgba(81, 217, 182, .1);
}

.pl-proof-item strong,
.pl-proof-item small {
  display: block;
}

.pl-proof-item strong {
  color: var(--pl-ink);
  font-size: .8rem;
  line-height: 1.25;
}

.pl-proof-item small {
  margin-top: 4px;
  color: var(--pl-muted);
  font-size: .72rem;
}

.pl-counter-section {
  padding: 72px 0 0;
}

.pl-counter-card {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(32px, 5vw, 62px);
  overflow: hidden;
  border-radius: 28px 28px 28px 9px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(216, 255, 119, .17), transparent 30%),
    linear-gradient(135deg, #0a5547, var(--pl-forest-deep));
  box-shadow: var(--pl-shadow-lg);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.pl-counter-card::before {
  position: absolute;
  right: -130px;
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(255, 255, 255, .018), 0 0 0 88px rgba(255, 255, 255, .012);
}

.pl-counter-card > * {
  position: relative;
  z-index: 1;
}

.pl-counter-card .pl-kicker {
  color: var(--pl-mint);
}

.pl-counter-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.pl-counter-value {
  color: var(--pl-lime);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: clamp(4.8rem, 10vw, 8.2rem);
  font-weight: 720;
  letter-spacing: -.085em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-counter-label {
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: 1.2;
}

.pl-counter-meta {
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.pl-counter-meta strong,
.pl-counter-meta small {
  display: block;
}

.pl-counter-meta strong {
  max-width: 360px;
  margin-top: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.pl-counter-meta small {
  margin-top: 16px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  line-height: 1.55;
}

.pl-counter-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  margin-top: 18px;
  color: var(--pl-mint);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.pl-counter-cta:hover { color: #fff; }
.pl-counter-cta:focus-visible {
  outline: 2px solid var(--pl-mint);
  outline-offset: 5px;
  border-radius: 4px;
}

.pl-section {
  position: relative;
  padding: 118px 0;
}

.pl-section-head {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .7fr);
  gap: 70px;
}

.pl-section-head h2,
.pl-editorial-copy h2,
.pl-security-copy h2,
.pl-pricing-copy h2,
.pl-faq-intro h2,
.pl-final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--pl-ink);
  font-size: clamp(2.65rem, 4.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -.056em;
  line-height: 1.03;
}

.pl-section-head > p,
.pl-editorial-copy > p,
.pl-security-copy > p,
.pl-pricing-copy > p,
.pl-faq-intro > p {
  margin-bottom: 0;
  color: var(--pl-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.pl-editorial-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  gap: clamp(58px, 8vw, 112px);
}

.pl-editorial-copy > p,
.pl-security-copy > p,
.pl-pricing-copy > p {
  margin-top: 28px;
}

.pl-feature-lines {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--pl-line);
}

.pl-feature-lines article {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--pl-line);
  grid-template-columns: 38px 1fr;
  gap: 15px;
}

.pl-feature-lines article > span {
  color: var(--pl-emerald);
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: .68rem;
  font-weight: 700;
}

.pl-feature-lines strong {
  display: block;
  margin-bottom: 3px;
  font-size: .92rem;
}

.pl-feature-lines p {
  margin-bottom: 0;
  color: var(--pl-muted);
  font-size: .8rem;
}

.pl-control-visual {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 28px 28px 28px 9px;
  background: var(--pl-paper-bright);
  box-shadow: var(--pl-shadow-lg);
}

.pl-control-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pl-control-toolbar strong { font-size: .8rem; }
.pl-control-toolbar span { color: var(--pl-muted); font: .62rem "Cascadia Mono", Consolas, monospace; }

.pl-control-grid {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.pl-fake-pdf {
  position: relative;
  padding: 24px 20px;
  overflow: hidden;
  border: 1px solid var(--pl-line);
  border-radius: 14px;
  background: #fff;
}

.pl-fake-pdf-title {
  margin-bottom: 42px;
  font-size: .72rem;
  font-weight: 800;
}

.pl-fake-row {
  display: grid;
  padding: 12px 9px;
  border-bottom: 1px solid rgba(11, 23, 20, .08);
  color: var(--pl-muted);
  font-size: .65rem;
  grid-template-columns: 48px 1fr auto;
  gap: 8px;
}

.pl-fake-row b {
  color: var(--pl-ink-soft);
  font-weight: 650;
}

.pl-fake-row.is-highlighted {
  margin-inline: -4px;
  padding-inline: 13px;
  border-radius: 8px;
  background: rgba(81, 217, 182, .15);
}

.pl-control-panel {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0a5547, var(--pl-forest-deep));
}

.pl-verified-chip {
  justify-self: start;
  margin-bottom: 8px;
  padding: 6px 8px;
  border-radius: 7px;
  color: var(--pl-lime);
  background: rgba(216, 255, 119, .08);
  font-size: .62rem;
  font-weight: 800;
}

.pl-control-panel > div {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
}

.pl-control-panel div span {
  color: rgba(255, 255, 255, .55);
  font-size: .58rem;
  text-transform: uppercase;
}

.pl-control-panel div strong {
  font-size: .75rem;
}

.pl-product-section {
  padding: 112px 0;
  color: #effcf7;
  background:
    radial-gradient(circle at 10% 0, rgba(81, 217, 182, .12), transparent 32%),
    linear-gradient(145deg, #073f35, #041d18);
}

.pl-product-section .pl-kicker { color: var(--pl-mint); }
.pl-product-section .pl-section-head h2 { color: #fff; }
.pl-product-section .pl-section-head > p { color: rgba(238, 251, 246, .66); }

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

.pl-process-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px 20px 20px 7px;
  background: rgba(255, 255, 255, .055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pl-process-grid article:hover {
  border-color: rgba(81, 217, 182, .3);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-5px);
}

.pl-process-grid article > span,
.pl-benefit-grid article > span {
  color: var(--pl-mint);
  font: .67rem "Cascadia Mono", Consolas, monospace;
}

.pl-process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 50px 0 34px;
  place-items: center;
  border: 1px solid rgba(81, 217, 182, .25);
  border-radius: 17px;
  color: var(--pl-forest-deep);
  background: var(--pl-mint);
  font-size: 1.45rem;
  font-weight: 900;
}

.pl-process-grid h3,
.pl-benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.pl-process-grid p {
  margin-bottom: 0;
  color: rgba(238, 251, 246, .62);
  font-size: .86rem;
}

.pl-product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.pl-product-cta > span {
  color: rgba(238, 251, 246, .72);
  font-size: .92rem;
}

.pl-benefit-grid article {
  position: relative;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--pl-line);
  border-radius: 20px 20px 20px 7px;
  background: rgba(251, 250, 246, .68);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pl-benefit-grid article:hover {
  border-color: rgba(12, 118, 95, .27);
  box-shadow: var(--pl-shadow-sm);
  transform: translateY(-5px);
}

.pl-benefit-grid article::after {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(12, 118, 95, .1);
  border-radius: 50%;
  content: "";
}

.pl-benefit-grid article > span { color: var(--pl-emerald); }
.pl-benefit-grid h3 { max-width: 280px; margin-top: 70px; color: var(--pl-ink); }
.pl-benefit-grid p { margin-bottom: 0; color: var(--pl-muted); font-size: .86rem; }

.pl-security-section {
  padding: 112px 0;
  background: var(--pl-paper-green);
}

.pl-security-grid,
.pl-pricing-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(58px, 8vw, 106px);
}

.pl-security-list {
  display: grid;
  margin-top: 34px;
  gap: 14px;
}

.pl-security-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
}

.pl-security-list article > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--pl-forest);
  background: rgba(81, 217, 182, .24);
  font-size: .72rem;
  font-weight: 900;
}

.pl-security-list strong {
  display: block;
  font-size: .86rem;
}

.pl-security-list p {
  margin: 2px 0 0;
  color: var(--pl-muted);
  font-size: .8rem;
}

.pl-security-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px 28px 28px 9px;
  color: #effcf7;
  background: linear-gradient(145deg, var(--pl-forest), var(--pl-forest-deep));
  box-shadow: var(--pl-shadow-lg);
}

.pl-security-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(81, 217, 182, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pl-security-rings::before,
.pl-security-rings::after {
  position: absolute;
  border: 1px solid rgba(81, 217, 182, .1);
  border-radius: 50%;
  content: "";
}

.pl-security-rings::before { inset: 38px; }
.pl-security-rings::after { inset: 78px; }

.pl-shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 120px;
  height: 140px;
  place-items: center;
  clip-path: polygon(50% 0, 92% 16%, 88% 70%, 50% 100%, 12% 70%, 8% 16%);
  color: var(--pl-forest-deep);
  background: linear-gradient(145deg, var(--pl-lime), var(--pl-mint));
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
  font-weight: 900;
}

.pl-security-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .065);
  backdrop-filter: blur(12px);
  font-size: .7rem;
  font-weight: 700;
}

.pl-security-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--pl-mint);
  box-shadow: 0 0 0 5px rgba(81, 217, 182, .1);
}

.pl-security-tag.one { top: 70px; left: 42px; }
.pl-security-tag.two { top: 145px; right: 32px; }
.pl-security-tag.three { right: 72px; bottom: 56px; }
.pl-security-tag.four { bottom: 108px; left: 30px; }

.pl-pricing-grid {
  grid-template-columns: minmax(0, .88fr) minmax(490px, 1.12fr);
}

.pl-pricing-note {
  margin-top: 28px;
  padding: 17px 19px;
  border-left: 3px solid var(--pl-mint);
  color: var(--pl-ink-soft);
  background: rgba(255, 255, 255, .48);
  font-size: .82rem;
}

.pl-price-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border-radius: 28px 28px 28px 9px;
  color: #fff;
  background: linear-gradient(145deg, #0a5547, var(--pl-forest-deep));
  box-shadow: var(--pl-shadow-lg);
}

.pl-price-card::before {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .025), 0 0 0 72px rgba(255, 255, 255, .018);
}

.pl-price-card > * {
  position: relative;
}

.pl-price-label {
  color: var(--pl-mint);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pl-price-main {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.pl-price-main strong {
  font-size: clamp(3.5rem, 7vw, 5.25rem);
  letter-spacing: -.065em;
  line-height: 1;
}

.pl-price-main span {
  padding-bottom: 9px;
  color: rgba(255, 255, 255, .62);
  font-size: .74rem;
}

.pl-price-details {
  display: grid;
  gap: 9px;
  margin: 32px 0 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.pl-price-details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .62);
  font-size: .76rem;
}

.pl-price-details strong {
  color: #fff;
  font-family: "Cascadia Mono", Consolas, monospace;
}

.pl-price-details .total {
  margin-top: 8px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 750;
}

.pl-price-details .total strong {
  color: var(--pl-lime);
  font-size: 1.18rem;
}

.pl-faq-section {
  padding-top: 90px;
}

.pl-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 108px);
}

.pl-faq-intro > p {
  margin-top: 24px;
}

.pl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--pl-emerald);
  font-size: .86rem;
  font-weight: 820;
}

.pl-text-link:hover span {
  transform: translateX(4px);
}

.pl-text-link span {
  transition: transform 180ms ease;
}

.pl-faq-list {
  border-top: 1px solid var(--pl-line);
}

.pl-faq-list details {
  border-bottom: 1px solid var(--pl-line);
}

.pl-faq-list summary {
  display: grid;
  min-height: 82px;
  align-items: center;
  list-style: none;
  color: var(--pl-ink);
  font-size: 1.04rem;
  font-weight: 780;
  grid-template-columns: 1fr 36px;
  gap: 20px;
  cursor: pointer;
}

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

.pl-faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--pl-line);
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.pl-faq-list details[open] summary span {
  color: #fff;
  background: var(--pl-forest);
  transform: rotate(45deg);
}

.pl-faq-list details p {
  max-width: 680px;
  margin-bottom: 0;
  padding: 0 58px 25px 0;
  color: var(--pl-muted);
  font-size: .9rem;
}

.pl-final-wrap {
  padding: 0 0 108px;
}

.pl-final-cta {
  position: relative;
  display: grid;
  min-height: 410px;
  align-items: end;
  padding: clamp(36px, 6vw, 76px);
  overflow: hidden;
  border-radius: 32px 32px 32px 10px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 5%, rgba(216, 255, 119, .2), transparent 30%),
    linear-gradient(135deg, #0a5547, var(--pl-forest-deep));
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.pl-final-cta::before,
.pl-final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.pl-final-cta::before { top: -220px; right: -100px; width: 560px; height: 560px; }
.pl-final-cta::after { top: -130px; right: -10px; width: 380px; height: 380px; }

.pl-final-cta > * {
  position: relative;
  z-index: 2;
}

.pl-final-cta .pl-kicker { color: var(--pl-mint); }
.pl-final-cta h2 { color: #fff; }
.pl-final-cta p { max-width: 680px; margin: 20px 0 0; color: rgba(255, 255, 255, .68); font-size: 1rem; }

body > footer {
  padding: 36px 24px 44px;
  border-top: 1px solid rgba(11, 23, 20, .1);
  color: #687570;
  background: #ebece5;
}

@keyframes pl-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pl-window-in {
  from { opacity: 0; transform: translateY(20px) rotateY(-4deg) rotateX(2deg); }
  to { opacity: 1; transform: translateY(0) rotateY(-4deg) rotateX(2deg); }
}

@keyframes pl-card-left {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pl-card-right {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pl-scan {
  0%, 100% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  68% { opacity: 1; }
  80% { transform: translateY(188px); opacity: 0; }
}

@keyframes pl-flow {
  to { background-position: 24px 0; }
}

@keyframes pl-pulse {
  50% { box-shadow: 0 0 0 11px rgba(81, 217, 182, 0); }
}

@keyframes pl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

html[data-theme="dark"] body {
  background: #071512;
}

html[data-theme="dark"] .topbar {
  border-bottom-color: rgba(255, 255, 255, .08);
  background: rgba(6, 20, 16, .9);
}

html[data-theme="dark"] .topbar .brand,
html[data-theme="dark"] .topbar-actions nav a,
html[data-theme="dark"] .topbar .link-button {
  color: #edf8f2;
}

html[data-theme="dark"] .topbar-actions nav a:hover,
html[data-theme="dark"] .topbar .link-button:hover {
  background: rgba(81, 217, 182, .09);
}

html[data-theme="dark"] .topbar-actions .nav-cta {
  color: #041d18;
  background: #d8ff77;
}

html[data-theme="dark"] .pl-page {
  --pl-ink: #edf8f2;
  --pl-ink-soft: #c5d7d0;
  --pl-muted: #9fb6ae;
  --pl-paper: #071512;
  --pl-paper-bright: #0b1d19;
  --pl-paper-green: #0b211b;
  --pl-line: rgba(145, 169, 160, .22);
  background:
    radial-gradient(circle at 82% 3%, rgba(81, 217, 182, .12), transparent 26%),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    var(--pl-paper);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

html[data-theme="dark"] .pl-section-nav a,
html[data-theme="dark"] .pl-button-secondary {
  color: var(--pl-ink);
}

html[data-theme="dark"] .pl-section-nav {
  border-bottom-color: rgba(255, 255, 255, .08);
  background: rgba(6, 20, 16, .9);
}

html[data-theme="dark"] .pl-section-nav a:hover,
html[data-theme="dark"] .pl-button-secondary {
  background: rgba(255, 255, 255, .06);
}

html[data-theme="dark"] .pl-stage-note,
html[data-theme="dark"] .pl-floating-status,
html[data-theme="dark"] .pl-proof-rail,
html[data-theme="dark"] .pl-benefit-grid article,
html[data-theme="dark"] .pl-pricing-note {
  border-color: var(--pl-line);
  background: rgba(11, 29, 25, .88);
}

html[data-theme="dark"] .pl-fake-pdf {
  color: var(--pl-ink);
  border-color: var(--pl-line);
  background: #0b1d19;
}

html[data-theme="dark"] .pl-fake-row b {
  color: var(--pl-ink-soft);
}

html[data-theme="dark"] body > footer {
  border-top-color: rgba(255, 255, 255, .08);
  color: #9fb6ae;
  background: #06110f;
}

@media (max-width: 1120px) {
  .pl-section-nav { display: none; }
  .pl-hero-grid { grid-template-columns: 1fr 470px; gap: 38px; }
  .pl-hero h1 { font-size: 3.7rem; }
  .pl-conversion-flow { padding-inline: 20px; grid-template-columns: 1fr 54px 1fr; }
  .pl-section-head { gap: 42px; }
  .pl-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-benefit-grid article:last-child { grid-column: 1 / -1; min-height: 220px; }
  .pl-security-grid,
  .pl-pricing-grid { grid-template-columns: 1fr 1fr; gap: 46px; }
}

@media (max-width: 900px) {
  .topbar { height: auto; min-height: 78px; padding: 12px 18px; }
  .topbar-actions nav { overflow-x: auto; }
  .pl-container { width: min(100% - 34px, 760px); }
  .pl-hero { min-height: auto; padding-top: 84px; }
  .pl-hero-grid { grid-template-columns: 1fr; }
  .pl-hero-copy { max-width: 720px; }
  .pl-stage { min-height: 550px; }
  .pl-conversion-window { right: 30px; left: 30px; }
  .pl-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-proof-item:nth-child(2) { border-right: 0; }
  .pl-proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--pl-line); }
  .pl-counter-card,
  .pl-section-head,
  .pl-editorial-grid,
  .pl-security-grid,
  .pl-pricing-grid,
  .pl-faq-grid,
  .pl-final-cta { grid-template-columns: 1fr; }
  .pl-counter-meta { max-width: 520px; padding: 28px 0 0; border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; }
  .pl-section { padding: 92px 0; }
  .pl-control-visual { max-width: 680px; }
  .pl-process-grid { grid-template-columns: 1fr; }
  .pl-process-grid article { min-height: 250px; }
  .pl-process-icon { margin: 34px 0 24px; }
  .pl-security-visual { min-height: 470px; }
}

@media (max-width: 680px) {
  .topbar { align-items: stretch; gap: 10px; }
  .topbar .brand { width: 100%; }
  .topbar-actions { width: 100%; }
  .topbar-actions nav { gap: 4px; padding-bottom: 3px; }
  .topbar-actions nav a,
  .topbar .link-button { padding: 7px 8px; font-size: .78rem; white-space: nowrap; }
  .topbar-actions .theme-toggle { margin-bottom: 6px; }
  .pl-container { width: calc(100% - 28px); }
  .pl-hero { padding: 70px 0 68px; }
  .pl-hero h1 { font-size: clamp(2.65rem, 13vw, 3.6rem); }
  .pl-lead { font-size: 1rem; }
  .pl-actions { display: grid; grid-template-columns: 1fr; }
  .pl-actions .pl-button { width: 100%; }
  .pl-stage { min-height: 455px; }
  .pl-stage-note { right: 4px; font-size: .56rem; }
  .pl-conversion-window { inset: 38px 0 25px; transform: none; }
  .pl-window-bar { height: 56px; padding-inline: 16px; }
  .pl-conversion-flow { min-height: 340px; padding: 20px 14px; grid-template-columns: 1fr; }
  .pl-document-card { min-height: 235px; }
  .pl-flow-bridge,
  .pl-coda-card { display: none; }
  .pl-floating-status { right: 8px; bottom: 0; }
  .pl-proof-grid { grid-template-columns: 1fr; }
  .pl-proof-item { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--pl-line); }
  .pl-proof-item:last-child { border-bottom: 0; }
  .pl-counter-section { padding-top: 38px; }
  .pl-counter-card { padding: 30px 23px 32px; gap: 34px; }
  .pl-counter-main { align-items: flex-start; flex-direction: column; gap: 18px; }
  .pl-counter-value { font-size: clamp(3.6rem, 14vw, 5.6rem); }
  .pl-counter-label { font-size: 1.35rem; }
  .pl-counter-meta { padding: 24px 0 0; border-top: 1px solid rgba(255, 255, 255, .13); border-left: 0; }
  .pl-section,
  .pl-product-section,
  .pl-security-section { padding: 78px 0; }
  .pl-section-head { margin-bottom: 40px; }
  .pl-section-head h2,
  .pl-editorial-copy h2,
  .pl-security-copy h2,
  .pl-pricing-copy h2,
  .pl-faq-intro h2,
  .pl-final-cta h2 { font-size: 2.45rem; }
  .pl-control-visual { padding: 14px; }
  .pl-control-grid { min-height: auto; grid-template-columns: 1fr; }
  .pl-control-panel { display: none; }
  .pl-product-cta { align-items: stretch; flex-direction: column; }
  .pl-process-grid,
  .pl-benefit-grid { grid-template-columns: 1fr; }
  .pl-benefit-grid article:last-child { grid-column: auto; }
  .pl-benefit-grid article { min-height: 240px; }
  .pl-security-visual { min-height: 410px; }
  .pl-security-tag.one { top: 42px; left: 18px; }
  .pl-security-tag.two { top: 98px; right: 18px; }
  .pl-security-tag.three { right: 20px; bottom: 32px; }
  .pl-security-tag.four { bottom: 84px; left: 18px; }
  .pl-price-card { padding: 28px 22px; }
  .pl-price-main { align-items: flex-start; flex-direction: column; }
  .pl-price-main strong { font-size: 3.7rem; }
  .pl-price-main span { padding-bottom: 0; }
  .pl-faq-list summary { font-size: .94rem; }
  .pl-final-wrap { padding-bottom: 78px; }
  .pl-final-cta { min-height: 480px; padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pl-page *,
  .pl-page *::before,
  .pl-page *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
