:root {
  --pf-ink: #111318;
  --pf-muted: #5f6673;
  --pf-line: #e5e7eb;
  --pf-surface: #f7f8fa;
  --pf-violet: #6d28d9;
  --pf-violet-soft: #f3eefe;
  --pf-blue: #2563eb;
  --pf-blue-soft: #eaf2ff;
  --pf-green: #16855b;
  --pf-green-soft: #e8f7f0;
  --pf-orange: #c25a12;
  --pf-orange-soft: #fff1e6;
}

.pf-section {
  padding: 88px 0;
  background: #fff;
  color: var(--pf-ink);
}

.pf-section--soft {
  background: var(--pf-surface);
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
}

.pf-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.pf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--pf-violet);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.pf-eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.pf-section-head h2,
.pf-path-copy h2,
.pf-band-copy h2 {
  margin: 0;
  color: var(--pf-ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.pf-section-head p,
.pf-path-copy > p,
.pf-band-copy > p {
  margin: 16px 0 0;
  color: var(--pf-muted);
  font-size: 17px;
  line-height: 1.75;
}

.pf-paths {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pf-path {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #fff;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .8fr);
}

.pf-path-copy {
  display: flex;
  min-width: 0;
  padding: 34px 12px 34px 34px;
  flex-direction: column;
  align-items: flex-start;
}

.pf-path-copy h2 {
  font-size: 27px;
}

.pf-path-visual {
  display: flex;
  min-height: 320px;
  padding: 24px 18px 24px 0;
  background: #f7f4ff;
  align-items: center;
  justify-content: center;
}

.pf-path:nth-child(2) .pf-path-visual {
  background: #eef7f4;
}

.pf-path-visual img {
  width: 100%;
  max-width: 330px;
  height: auto;
}

.pf-text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--pf-violet);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  align-items: center;
}

.pf-text-link:hover {
  color: #501bb3;
}

.pf-text-link i {
  font-size: 18px;
  transition: transform .2s ease;
}

.pf-text-link:hover i {
  transform: translateX(3px);
}

.pf-feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pf-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pf-feature-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #fff;
  color: var(--pf-ink);
  text-decoration: none;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pf-feature-card:hover {
  border-color: #c8b5f5;
  box-shadow: 0 18px 42px rgba(17, 19, 24, .08);
  transform: translateY(-3px);
}

.pf-feature-card-visual {
  display: flex;
  min-height: 190px;
  padding: 18px;
  background: #f7f4ff;
  align-items: center;
  justify-content: center;
}

.pf-feature-card[data-accent="blue"] .pf-feature-card-visual {
  background: var(--pf-blue-soft);
}

.pf-feature-card[data-accent="green"] .pf-feature-card-visual {
  background: var(--pf-green-soft);
}

.pf-feature-card[data-accent="orange"] .pf-feature-card-visual {
  background: var(--pf-orange-soft);
}

.pf-feature-card-visual img {
  width: 100%;
  max-width: 260px;
  height: 155px;
  object-fit: contain;
}

.pf-feature-card-copy {
  display: flex;
  padding: 22px;
  flex: 1;
  flex-direction: column;
}

.pf-feature-card-copy small {
  margin-bottom: 9px;
  color: var(--pf-violet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pf-feature-card-copy h3 {
  margin: 0;
  color: var(--pf-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.pf-feature-card-copy p {
  margin: 11px 0 22px;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.pf-feature-card-copy span {
  display: inline-flex;
  gap: 7px;
  margin-top: auto;
  color: var(--pf-ink);
  font-size: 14px;
  font-weight: 750;
  align-items: center;
}

.pf-feature-card-copy span i {
  color: var(--pf-violet);
  font-size: 17px;
}

.pf-band {
  display: grid;
  gap: 56px;
  padding: 54px 0;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
}

.pf-band-visual {
  display: flex;
  min-height: 360px;
  padding: 32px;
  border-radius: 8px;
  background: #101218;
  align-items: center;
  justify-content: center;
}

.pf-band-visual img {
  width: 100%;
  max-width: 560px;
}

.pf-check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pf-check-list li {
  display: grid;
  gap: 10px;
  color: #343a46;
  font-size: 15px;
  line-height: 1.55;
  grid-template-columns: 22px minmax(0, 1fr);
}

.pf-check-list i {
  color: var(--pf-green);
  font-size: 20px;
}

/* Shared feature marketing pages */
.pf-page {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--pf-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pf-page *,
.pf-page *::before,
.pf-page *::after {
  box-sizing: border-box;
}

.pf-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.pf-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, .85);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}

.pf-nav-inner {
  display: flex;
  min-height: 70px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.pf-brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.pf-brand img {
  width: 160px;
  height: auto;
}

.pf-nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}

.pf-nav-links a,
.pf-nav-login {
  color: #3d4350;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.pf-nav-links a:hover,
.pf-nav-login:hover {
  color: var(--pf-violet);
}

.pf-nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pf-button {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--pf-violet);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pf-button:hover {
  background: #5720b8;
  color: #fff;
  transform: translateY(-1px);
}

.pf-button--secondary {
  border-color: #d9dce2;
  background: #fff;
  color: var(--pf-ink);
}

.pf-button--secondary:hover {
  border-color: #bfb3db;
  background: #f8f6fc;
  color: var(--pf-ink);
}

.pf-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--pf-line);
  border-radius: 7px;
  background: #fff;
  color: var(--pf-ink);
  align-items: center;
  justify-content: center;
}

.pf-menu-button i {
  font-size: 22px;
}

.pf-mobile-menu {
  display: none;
  padding: 8px 0 18px;
  border-top: 1px solid var(--pf-line);
}

.pf-mobile-menu.is-open {
  display: grid;
}

.pf-mobile-menu a {
  padding: 12px 0;
  color: var(--pf-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.pf-breadcrumbs {
  display: flex;
  min-width: 0;
  gap: 8px;
  margin: 0;
  padding: 24px 0 0;
  color: #747b87;
  font-size: 13px;
  list-style: none;
  flex-wrap: wrap;
}

.pf-breadcrumbs a {
  color: #535a67;
  text-decoration: none;
}

.pf-breadcrumbs a:hover {
  color: var(--pf-violet);
}

.pf-page-hero {
  padding: 48px 0 72px;
}

.pf-page-hero-grid {
  display: grid;
  gap: 62px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
}

.pf-page-kicker {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pf-violet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  align-items: center;
}

.pf-page-kicker i {
  font-size: 20px;
}

.pf-page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--pf-ink);
  font-size: 50px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.pf-page-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--pf-muted);
  font-size: 18px;
  line-height: 1.75;
}

.pf-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pf-hero-actions--center {
  justify-content: center;
}

.pf-page-hero-visual {
  display: flex;
  min-width: 0;
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #f7f4ff;
  align-items: center;
  justify-content: center;
}

.pf-page-hero-visual[data-accent="blue"] {
  background: var(--pf-blue-soft);
}

.pf-page-hero-visual[data-accent="green"] {
  background: var(--pf-green-soft);
}

.pf-page-hero-visual[data-accent="orange"] {
  background: var(--pf-orange-soft);
}

.pf-page-hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.pf-detail-section {
  padding: 80px 0;
}

.pf-detail-section--soft {
  border-top: 1px solid var(--pf-line);
  border-bottom: 1px solid var(--pf-line);
  background: var(--pf-surface);
}

.pf-detail-intro {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
}

.pf-detail-heading span {
  color: var(--pf-violet);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pf-detail-heading h2,
.pf-detail-section > .pf-container > h2,
.pf-related-head h2 {
  margin: 10px 0 0;
  color: var(--pf-ink);
  font-size: 34px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.pf-detail-copy > p {
  margin: 0;
  color: var(--pf-muted);
  font-size: 17px;
  line-height: 1.8;
}

.pf-capability-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pf-capability {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #fff;
  color: #353b46;
  font-size: 14px;
  line-height: 1.6;
  grid-template-columns: 22px minmax(0, 1fr);
}

.pf-capability i {
  color: var(--pf-green);
  font-size: 20px;
}

.pf-steps {
  display: grid;
  gap: 0;
  margin-top: 38px;
  counter-reset: pf-step;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pf-step {
  position: relative;
  min-width: 0;
  padding: 0 30px;
  counter-increment: pf-step;
}

.pf-step:first-child {
  padding-left: 0;
}

.pf-step:last-child {
  padding-right: 0;
}

.pf-step + .pf-step {
  border-left: 1px solid var(--pf-line);
}

.pf-step::before {
  display: flex;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pf-violet);
  color: #fff;
  content: counter(pf-step);
  font-size: 14px;
  font-weight: 850;
  align-items: center;
  justify-content: center;
}

.pf-step h3 {
  margin: 0;
  color: var(--pf-ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.pf-step p {
  margin: 10px 0 0;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.pf-guardrails {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pf-guardrail {
  padding: 28px;
  border: 1px solid var(--pf-line);
  border-radius: 8px;
  background: #fff;
}

.pf-guardrail h2 {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--pf-ink);
  font-size: 23px;
  font-weight: 850;
  align-items: center;
}

.pf-guardrail h2 i {
  color: var(--pf-violet);
  font-size: 25px;
}

.pf-plain-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pf-plain-list li {
  position: relative;
  padding-left: 19px;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.65;
}

.pf-plain-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pf-violet);
  content: "";
}

.pf-faq-list {
  max-width: 850px;
  margin: 34px auto 0;
  border-top: 1px solid var(--pf-line);
}

.pf-faq-item {
  border-bottom: 1px solid var(--pf-line);
}

.pf-faq-question {
  display: flex;
  width: 100%;
  min-height: 70px;
  gap: 18px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--pf-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  align-items: center;
  justify-content: space-between;
}

.pf-faq-question i {
  flex: 0 0 auto;
  font-size: 20px;
  transition: transform .2s ease;
}

.pf-faq-item.is-open .pf-faq-question i {
  transform: rotate(180deg);
}

.pf-faq-answer {
  display: none;
  padding: 0 42px 22px 0;
  color: var(--pf-muted);
  font-size: 15px;
  line-height: 1.75;
}

.pf-faq-item.is-open .pf-faq-answer {
  display: block;
}

.pf-related-head {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-end;
  justify-content: space-between;
}

.pf-related-head a {
  color: var(--pf-violet);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.pf-cta {
  padding: 62px 0;
  background: #111318;
  color: #fff;
}

.pf-cta-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.pf-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.pf-cta p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #b9bec9;
  font-size: 15px;
  line-height: 1.7;
}

.pf-footer {
  padding: 58px 0 24px;
  border-top: 1px solid var(--pf-line);
  background: #fff;
}

.pf-footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(150px, .6fr));
}

.pf-footer-brand img {
  width: 170px;
}

.pf-footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--pf-muted);
  font-size: 14px;
  line-height: 1.7;
}

.pf-footer h2 {
  margin: 0 0 14px;
  color: var(--pf-ink);
  font-size: 14px;
  font-weight: 850;
}

.pf-footer-links {
  display: grid;
  gap: 10px;
}

.pf-footer-links a {
  color: var(--pf-muted);
  font-size: 14px;
  text-decoration: none;
}

.pf-footer-links a:hover {
  color: var(--pf-violet);
}

.pf-footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--pf-line);
  color: #7a818d;
  font-size: 13px;
}

.pf-hub-hero {
  padding: 58px 0 74px;
  border-bottom: 1px solid var(--pf-line);
  background: #f8f7fb;
  text-align: center;
}

.pf-hub-hero h1 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--pf-ink);
  font-size: 50px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

.pf-hub-hero p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--pf-muted);
  font-size: 18px;
  line-height: 1.75;
}

.pf-hub-groups {
  display: grid;
  gap: 72px;
}

.pf-hub-group-head {
  display: grid;
  gap: 28px;
  margin-bottom: 26px;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  align-items: end;
}

.pf-hub-group-head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.pf-hub-group-head p {
  margin: 0;
  color: var(--pf-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .pf-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-path {
    grid-template-columns: 1fr;
  }

  .pf-path-copy {
    padding: 30px;
  }

  .pf-path-visual {
    min-height: 250px;
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .pf-section,
  .pf-detail-section {
    padding: 64px 0;
  }

  .pf-nav-links,
  .pf-nav-login,
  .pf-nav-actions > .pf-button {
    display: none;
  }

  .pf-menu-button {
    display: inline-flex;
  }

  .pf-page-hero-grid,
  .pf-detail-intro,
  .pf-band {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .pf-page-hero-visual {
    min-height: 330px;
  }

  .pf-band-visual {
    order: 2;
  }

  .pf-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .pf-container {
    width: min(100% - 28px, 1160px);
  }

  .pf-section,
  .pf-detail-section {
    padding: 52px 0;
  }

  .pf-section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .pf-section-head h2,
  .pf-path-copy h2,
  .pf-band-copy h2,
  .pf-detail-heading h2,
  .pf-detail-section > .pf-container > h2,
  .pf-related-head h2 {
    font-size: 29px;
  }

  .pf-section-head p,
  .pf-path-copy > p,
  .pf-band-copy > p {
    font-size: 15px;
  }

  .pf-paths,
  .pf-feature-grid,
  .pf-capability-grid,
  .pf-guardrails,
  .pf-hub-group-head {
    grid-template-columns: 1fr;
  }

  .pf-feature-card-visual {
    min-height: 180px;
  }

  .pf-path-copy {
    padding: 26px;
  }

  .pf-path-visual {
    min-height: 220px;
  }

  .pf-band {
    padding: 22px 0;
  }

  .pf-band-visual {
    min-height: 250px;
    padding: 20px;
  }

  .pf-page-hero {
    padding: 36px 0 54px;
  }

  .pf-page-hero h1,
  .pf-hub-hero h1 {
    font-size: 38px;
  }

  .pf-page-hero p,
  .pf-hub-hero p {
    font-size: 16px;
  }

  .pf-page-hero-visual {
    min-height: 270px;
    padding: 22px;
  }

  .pf-steps {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .pf-step,
  .pf-step:first-child,
  .pf-step:last-child {
    padding: 0;
  }

  .pf-step + .pf-step {
    padding-top: 26px;
    border-top: 1px solid var(--pf-line);
    border-left: 0;
  }

  .pf-guardrail {
    padding: 23px;
  }

  .pf-related-head,
  .pf-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pf-cta h2 {
    font-size: 29px;
  }

  .pf-footer-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .pf-footer-brand {
    grid-column: auto;
  }

  .pf-hub-hero {
    padding: 44px 0 56px;
    text-align: left;
  }

  .pf-hub-hero h1,
  .pf-hub-hero p {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-page *,
  .pf-feature-card,
  .pf-text-link i {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Match the visual language of the approved landing page. */
.pf-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 9px 13px;
  border-radius: 7px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.pf-skip-link:focus {
  transform: translateY(0);
}

.pf-page main {
  padding-top: 80px;
}

.pf-nav {
  position: fixed;
  right: 0;
  left: 0;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, .45);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transition: background .2s ease, box-shadow .2s ease;
}

.pf-nav.is-scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
}

.pf-nav .pf-container {
  width: 100%;
  max-width: 1280px;
  padding: 0 16px;
}

.pf-nav-inner {
  min-height: 64px;
  gap: 0;
}

.pf-brand img {
  width: auto;
  height: 40px;
  max-width: 160px;
  max-height: 40px;
}

.pf-nav-links {
  gap: 24px;
  margin-right: auto;
  margin-left: 64px;
}

.pf-nav-links a,
.pf-nav-login {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
}

.pf-nav-links a:hover,
.pf-nav-links a[aria-current="page"],
.pf-nav-login:hover {
  color: #111827;
}

.pf-nav-actions {
  gap: 36px;
}

.pf-button--nav {
  min-height: 37px;
  padding: 0 16px;
  background: #9333ea;
  font-weight: 500;
}

.pf-button--nav:hover {
  background: #7e22ce;
}

.pf-menu-button {
  width: 30px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pf-mobile-menu {
  gap: 2px;
  background: rgba(255, 255, 255, .97);
}

.pf-mobile-menu a {
  display: flex;
  gap: 11px;
  border-bottom: 1px solid #f0f1f4;
  align-items: center;
}

.pf-mobile-menu a i {
  width: 22px;
  color: var(--pf-violet);
  font-size: 19px;
  text-align: center;
}

.pf-mobile-menu .pf-mobile-cta {
  margin-top: 7px;
  padding: 12px;
  border-radius: 7px;
  background: var(--pf-violet-soft);
  color: var(--pf-violet);
}

.pf-hub-hero {
  overflow: hidden;
  padding-bottom: 0;
  background: #faf7ff;
}

.pf-hub-hero p {
  max-width: 590px;
}

.pf-hub-showcase {
  height: 315px;
  max-width: 900px;
  margin: 38px auto -2px;
  overflow: hidden;
}

.pf-hub-showcase img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(17, 24, 39, .12));
  animation: pf-feature-float 7s ease-in-out infinite;
}

.pf-page .pf-feature-card-copy {
  position: relative;
  padding: 20px;
}

.pf-page .pf-feature-card-copy p {
  min-height: 22px;
  margin: 8px 42px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.pf-page .pf-feature-card-copy .pf-feature-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid #e0e2e7;
  border-radius: 50%;
  background: #fff;
  color: var(--pf-violet);
  align-items: center;
  justify-content: center;
}

.pf-page .pf-feature-card:hover .pf-feature-card-arrow {
  border-color: var(--pf-violet);
  background: var(--pf-violet);
  color: #fff;
  transform: translateX(2px);
}

.pf-page .pf-feature-card-visual img {
  transition: transform .3s ease;
}

.pf-page .pf-feature-card:hover .pf-feature-card-visual img {
  transform: translateY(-3px) scale(1.02);
}

.pf-page-hero {
  padding-top: 42px;
  text-align: center;
}

.pf-page-hero-grid {
  gap: 36px;
  grid-template-columns: 1fr;
}

.pf-page-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.pf-page-hero h1,
.pf-page-hero p {
  margin-right: auto;
  margin-left: auto;
}

.pf-page-hero p {
  max-width: 660px;
}

.pf-page-hero .pf-hero-actions {
  justify-content: center;
}

.pf-page-hero-visual {
  width: min(880px, 100%);
  min-height: 320px;
  margin: 0 auto;
  padding: 26px;
}

.pf-page-hero-visual img {
  max-width: 630px;
  animation: pf-feature-float 7s ease-in-out infinite;
}

.pf-product-proof {
  padding: 76px 0;
  background: #fff;
}

.pf-product-proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: center;
}

.pf-product-proof-copy h2 {
  max-width: 520px;
  margin: 12px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -.035em;
}

.pf-product-proof-copy > p {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--pf-muted);
  font-size: 16px;
  line-height: 1.75;
}

.pf-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.pf-proof-metric {
  padding: 14px 10px;
  border: 1px solid #ebe7f2;
  border-radius: 11px;
  background: #faf8ff;
}

.pf-proof-metric strong,
.pf-proof-metric span {
  display: block;
}

.pf-proof-metric strong {
  color: var(--pf-violet);
  font-size: 19px;
}

.pf-proof-metric span {
  margin-top: 3px;
  color: var(--pf-muted);
  font-size: 11px;
  font-weight: 700;
}

.pf-proof-progress {
  height: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #ede9fe;
}

.pf-proof-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9333ea, #3b82f6, #10b981);
  transition: width 1.8s cubic-bezier(.22, 1, .36, 1);
}

.pf-product-proof.is-running .pf-proof-progress span {
  width: 100%;
}

.pf-product-proof-copy > small {
  display: flex;
  gap: 7px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
  flex-wrap: wrap;
}

.pf-product-shot {
  position: relative;
  min-height: 460px;
  margin: 0;
  padding: 22px 22px 0;
  overflow: hidden;
  border: 1px solid #e9e3f5;
  border-radius: 20px;
  background: linear-gradient(145deg, #faf7ff, #f4f7fb);
  box-shadow: 0 24px 65px rgba(17, 24, 39, .12);
}

.pf-product-shot img {
  display: block;
  width: 100%;
  height: 440px;
  border-radius: 12px 12px 0 0;
  background: #fff;
  object-fit: cover;
  object-position: top;
  transform: translateY(24px) scale(.985);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}

.pf-product-shot img[src$=".svg"] {
  padding: 30px;
  object-fit: contain;
}

.pf-product-proof.is-running .pf-product-shot img {
  transform: none;
}

.pf-product-shot figcaption {
  position: absolute;
  right: 36px;
  bottom: 22px;
  display: flex;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(17, 24, 39, .1);
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  align-items: center;
}

.pf-product-shot figcaption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.pf-step::before {
  display: none;
}

.pf-step-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  border-radius: 8px;
  background: var(--pf-violet-soft);
  color: var(--pf-violet);
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

.pf-step:nth-child(2) .pf-step-icon {
  background: var(--pf-blue-soft);
  color: var(--pf-blue);
}

.pf-step:nth-child(3) .pf-step-icon {
  background: var(--pf-green-soft);
  color: var(--pf-green);
}

.pf-cta .pf-page-kicker {
  margin-bottom: 9px;
  color: #c4b5fd;
}

.pf-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.pf-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pf-motion-ready .pf-feature-grid [data-reveal]:nth-child(2),
.pf-motion-ready .pf-steps [data-reveal]:nth-child(2) {
  transition-delay: .07s;
}

.pf-motion-ready .pf-feature-grid [data-reveal]:nth-child(3),
.pf-motion-ready .pf-steps [data-reveal]:nth-child(3) {
  transition-delay: .14s;
}

.pf-motion-ready .pf-feature-grid [data-reveal]:nth-child(4) {
  transition-delay: .21s;
}

@keyframes pf-feature-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .pf-nav .pf-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 16px;
  }
}

@media (max-width: 720px) {
  .pf-page main {
    padding-top: 80px;
  }

  .pf-hub-showcase {
    width: calc(100% + 12px);
    height: 190px;
    margin-top: 30px;
    margin-left: -6px;
  }

  .pf-page-hero-visual {
    min-height: 245px;
    padding: 18px;
  }

  .pf-page .pf-feature-card-copy p {
    min-height: 0;
  }

  .pf-step-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .pf-product-proof {
    padding: 54px 0;
  }

  .pf-product-proof-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pf-proof-metrics {
    gap: 7px;
  }

  .pf-proof-metric {
    padding: 11px 8px;
  }

  .pf-product-shot {
    min-height: 350px;
    padding: 12px 12px 0;
  }

  .pf-product-shot img {
    height: 330px;
  }

  .pf-product-shot figcaption {
    right: 20px;
    bottom: 14px;
    left: 20px;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-hub-showcase img,
  .pf-page-hero-visual img {
    animation: none !important;
  }

  .pf-motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
