/* ============================================================
   pipefluence.css — Pipefluence brand CSS
   Prefix: pf-  | Indent: 2-space | Generated: web0519
   ============================================================ */

/* ---- Horizontal overflow guard (MANDATORY) ---- */
html, body { overflow-x: hidden; }

/* ---- Root tokens ---- */
:root {
  --pf-accent: #4f46e5;
  --pf-accent-rgb: 79, 70, 229;
  --pf-secondary: #0ea5e9;
  --pf-bg-dark: #0f172a;
  --pf-bg-alt: #1e293b;
  --pf-bg-surface: #f8fafc;
  --pf-text-primary: #0f172a;
  --pf-text-body: #334155;
  --pf-text-muted: #64748b;
  --pf-text-light: #94a3b8;
  --pf-border: #e2e8f0;
  --pf-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --pf-font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --pf-radius: 12px;
  --pf-container: 1200px;
}

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

body {
  font-family: var(--pf-font-sans);
  background: #ffffff;
  color: var(--pf-text-body);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4 {
  font-family: var(--pf-font-display);
  letter-spacing: -0.02em;
  color: var(--pf-text-primary);
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pf-accent); text-decoration: none; transition: color 0.2s; }
a:hover { opacity: 0.85; }

/* ---- Utility: container ---- */
.pf-container {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section labels ---- */
.pf-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.pf-section-desc {
  font-size: 17px;
  color: var(--pf-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.pf-section-header {
  margin-bottom: 52px;
}

/* ---- Buttons ---- */
.pf-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--pf-font-sans);
}

.pf-btn--primary {
  background: var(--pf-accent);
  color: #ffffff;
}
.pf-btn--primary:hover { filter: brightness(1.1); color: #ffffff; opacity: 1; }

.pf-btn--outline {
  background: transparent;
  color: var(--pf-accent);
  border: 1.5px solid var(--pf-accent);
}
.pf-btn--outline:hover { background: var(--pf-accent); color: #ffffff; opacity: 1; }

.pf-btn--ghost {
  background: transparent;
  color: var(--pf-text-body);
  border: 1.5px solid var(--pf-border);
}
.pf-btn--ghost:hover { border-color: var(--pf-accent); color: var(--pf-accent); opacity: 1; }

.pf-btn--sm { padding: 8px 16px; font-size: 14px; }
.pf-btn--lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   NAV — pf-nav
   ============================================================ */
.pf-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.pf-nav--sticky { position: sticky; }

.pf-nav--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pf-nav--transparent {
  background: transparent;
}

.pf-nav--transparent.pf-nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pf-nav--scrolled {
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.pf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.pf-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--pf-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pf-text-primary);
}

.pf-nav__logo-img {
  height: 28px;
  width: auto;
  display: none;
}

.pf-nav__logo-img--light { display: inline; }
.pf-nav__logo-img--dark  { display: none; }

.pf-nav__logo-text {
  font-family: var(--pf-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pf-text-primary);
  letter-spacing: -0.02em;
}

.pf-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pf-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.pf-nav__link:hover { color: var(--pf-accent); background: rgba(79, 70, 229, 0.06); opacity: 1; }
.pf-nav__link--active { color: var(--pf-accent); }

.pf-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-nav__auth-link {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.2s;
}
.pf-nav__auth-link:hover { color: var(--pf-accent); opacity: 1; }

.pf-nav__cta {
  background: var(--pf-accent);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s;
}
.pf-nav__cta:hover { filter: brightness(1.1); color: #ffffff; opacity: 1; }

.pf-nav__cta--button { background: var(--pf-accent); color: #ffffff; }

.pf-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.pf-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .pf-nav__links,
  .c-nav__links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    gap: 4px;
  }
  .pf-nav__links.open,
  .c-nav__links.open { display: flex; }
  .pf-nav__toggle,
  .c-nav__toggle { display: flex; }
  .pf-nav__actions { gap: 4px; }
  .pf-nav__auth-link { display: none; }
}

/* ============================================================
   HERO — C-split variant
   ============================================================ */
.pf-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--pf-bg-dark);
  color: #f1f5f9;
  overflow: hidden;
}

.pf-hero--split-col {
  /* split variant */
}

.pf-hero__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pf-hero__content {
  width: 100%;
}

.pf-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 20px;
  background: rgba(79, 70, 229, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(129, 140, 248, 0.25);
}

.pf-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.pf-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 480px;
}

.pf-hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pf-hero__cta-primary {
  background: var(--pf-accent);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s;
  display: inline-block;
}
.pf-hero__cta-primary:hover { filter: brightness(1.12); color: #ffffff; opacity: 1; }

.pf-hero__cta-secondary {
  background: transparent;
  color: #e2e8f0;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(226, 232, 240, 0.3);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.pf-hero__cta-secondary:hover { border-color: #e2e8f0; color: #ffffff; opacity: 1; }

.pf-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-hero__visual-wrap {
  width: 100%;
  border-radius: var(--pf-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.pf-hero__visual-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .pf-hero__inner {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
    gap: 40px;
  }
  .pf-hero { min-height: auto; }
  .pf-hero__visual { order: -1; }
  .pf-hero__visual-wrap { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .pf-hero__title { font-size: 32px; }
  .pf-hero__lede { font-size: 16px; }
}

/* ============================================================
   STATS — A-bar variant
   ============================================================ */
.pf-stats {
  background: #1e293b;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pf-stats__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pf-stats__item { padding: 12px 0; }

.pf-stats__number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: var(--pf-accent);
  line-height: 1.1;
  font-family: var(--pf-font-display);
}

.pf-stats__label {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pf-stats__list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pf-stats__number { font-size: 28px; }
}

/* ============================================================
   FEATURES — icon-per-card / icon-text-row layout
   ============================================================ */
.pf-features {
  padding: 88px 0;
  background: #ffffff;
}

.pf-features__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-features__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pf-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-features__card {
  background: var(--pf-bg-surface);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pf-features__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.1);
}

/* icon-text-row: icon + title on one row */
.pf-features__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pf-features__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 8px;
  font-size: 18px;
  color: var(--pf-accent);
  flex-shrink: 0;
}

.pf-features__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin: 0;
  line-height: 1.25;
}

.pf-features__card-body {
  font-size: 14px;
  color: var(--pf-text-muted);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 900px) {
  .pf-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .pf-features__grid { grid-template-columns: 1fr; }
  .pf-features { padding: 60px 0; }
}

/* ============================================================
   PROCESS — A-numbered variant
   ============================================================ */
.pf-process {
  padding: 88px 0;
  background: var(--pf-bg-surface);
}

.pf-process__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-process__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pf-process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pf-process__step {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 28px 22px;
  position: relative;
}

.pf-process__step-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--pf-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--pf-font-display);
}

.pf-process__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pf-process__step-body {
  font-size: 14px;
  color: var(--pf-text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .pf-process__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .pf-process__list { grid-template-columns: 1fr; }
  .pf-process { padding: 60px 0; }
}

/* ============================================================
   TESTIMONIALS — B-stats variant
   ============================================================ */
.pf-testimonials {
  padding: 88px 0;
  background: var(--pf-bg-dark);
}

.pf-testimonials__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-testimonials__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.pf-testimonials__header .pf-section-title {
  color: #f1f5f9;
}

.pf-testimonials__header .pf-section-desc {
  color: #94a3b8;
}

.pf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-testimonials__card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--pf-radius);
  padding: 32px 26px;
}

.pf-testimonials__stat {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--pf-accent);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--pf-font-display);
}

.pf-testimonials__quote {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pf-testimonials__author {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.pf-testimonials__role {
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 900px) {
  .pf-testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
  .pf-testimonials { padding: 64px 0; }
}

/* ============================================================
   INTEGRATIONS WALL
   ============================================================ */
.pf-integrations {
  padding: 72px 0;
  background: var(--pf-bg-surface);
  border-top: 1px solid var(--pf-border);
}

.pf-integrations__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pf-integrations__header {
  margin-bottom: 44px;
}

.pf-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.pf-integrations__logo {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pf-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s;
}

.pf-integrations__logo:hover {
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.3);
}

.pf-integrations__logo i {
  font-size: 16px;
  color: var(--pf-accent);
}

/* ============================================================
   CTA BANNER — A-banner variant
   ============================================================ */
.pf-cta {
  padding: 80px 0;
  background: var(--pf-accent);
  text-align: center;
}

.pf-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.pf-cta__title {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.pf-cta__body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.65;
}

.pf-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pf-cta .pf-btn--primary {
  background: #ffffff;
  color: var(--pf-accent);
}
.pf-cta .pf-btn--primary:hover { filter: brightness(0.96); color: var(--pf-accent); opacity: 1; }

.pf-cta .pf-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.pf-cta .pf-btn--outline:hover { border-color: #ffffff; color: #ffffff; opacity: 1; }

@media (max-width: 576px) {
  .pf-cta { padding: 60px 0; }
  .pf-cta__title { font-size: 26px; }
}

/* ============================================================
   FOOTER — A-4col variant
   ============================================================ */
.pf-footer {
  background: var(--pf-bg-dark);
  padding: 64px 0 0;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}

.pf-footer__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.pf-footer__col { }

.pf-footer__col--brand .pf-footer__logo-text {
  font-family: var(--pf-font-display);
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pf-footer__tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pf-footer__social {
  display: flex;
  gap: 12px;
}

.pf-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #1e293b;
  color: #94a3b8;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.pf-footer__social-link:hover { background: var(--pf-accent); color: #ffffff; opacity: 1; }

.pf-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pf-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-footer__list-item {
  margin-bottom: 10px;
}

.pf-footer__link {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.pf-footer__link:hover { color: #f1f5f9; opacity: 1; }

.pf-footer__legal {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pf-footer__copy {
  font-size: 13px;
  color: #475569;
}

.pf-footer__legal-links {
  display: flex;
  gap: 20px;
}

.pf-footer__legal-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.pf-footer__legal-links a:hover { color: #94a3b8; opacity: 1; }

@media (max-width: 900px) {
  .pf-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 576px) {
  .pf-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .pf-footer__legal { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   COOKIE BANNER — corner-toast-br (hidden-attribute mechanism)
   ============================================================ */
.pf-cookie {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 1080;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 3px solid var(--pf-accent);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: 18px 20px;
}

.pf-cookie[hidden] { display: none !important; }

.pf-cookie__inner { display: flex; flex-direction: column; gap: 14px; }

.pf-cookie__text {
  font-size: 13px;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}

.pf-cookie__text a { color: var(--pf-accent); text-decoration: underline; }

.pf-cookie__buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* ============================================================
   SUBPAGE HERO
   ============================================================ */
.pf-page-hero {
  background: var(--pf-bg-surface);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--pf-border);
}

.pf-page-hero__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-page-hero__heading {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-page-hero__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

.pf-page-hero__lede {
  font-size: 17px;
  color: var(--pf-text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */

/* Founding story */
.pf-founding-story {
  padding: 88px 0;
  background: #ffffff;
}

.pf-founding-story__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-founding-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.pf-founding-story__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-founding-story__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.pf-founding-story__body p {
  font-size: 16px;
  color: var(--pf-text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}

.pf-founding-story__timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pf-founding-story__milestone {
  background: var(--pf-bg-surface);
  border-radius: 10px;
  padding: 20px 22px;
  border-left: 3px solid var(--pf-accent);
}

.pf-founding-story__milestone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 6px;
}

.pf-founding-story__milestone-text {
  font-size: 14px;
  color: var(--pf-text-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .pf-founding-story__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mission section */
.pf-mission {
  padding: 88px 0;
  background: var(--pf-accent);
}

.pf-mission__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pf-mission__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.pf-mission__statement {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 28px;
}

.pf-mission__context {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Values section */
.pf-values {
  padding: 88px 0;
  background: var(--pf-bg-surface);
}

.pf-values__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-values__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.pf-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pf-values__item {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pf-values__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 7px;
  font-size: 16px;
  color: var(--pf-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-values__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--pf-text-primary);
  line-height: 1.4;
}

/* Team card grid */
.pf-team {
  padding: 88px 0;
  background: var(--pf-bg-surface);
}

.pf-team__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .pf-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pf-team__grid {
    grid-template-columns: 1fr;
  }
}

.pf-team__card {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pf-team__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pf-team__card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pf-team__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 4px;
}

.pf-team__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-team__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--pf-text-body);
  margin-top: 0;
  flex: 1;
}

/* Team origin */
.pf-team-origin {
  padding: 72px 0;
  background: #ffffff;
}

.pf-team-origin__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.pf-team-origin__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-team-origin__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 18px;
}

.pf-team-origin__body {
  font-size: 16px;
  color: var(--pf-text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   PRODUCT PAGE SECTIONS
   ============================================================ */

/* Problem section */
.pf-problem {
  padding: 88px 0;
  background: #ffffff;
}

.pf-problem__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pf-problem__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e11d48;
  margin-bottom: 12px;
}

.pf-problem__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}

.pf-problem__body p {
  font-size: 16px;
  color: var(--pf-text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pf-problem__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pf-problem__stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff5f5;
  border-radius: 10px;
  border-left: 3px solid #e11d48;
}

.pf-problem__stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #e11d48;
  font-family: var(--pf-font-display);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.pf-problem__stat-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .pf-problem__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* How it works section */
.pf-how-it-works {
  padding: 88px 0;
  background: var(--pf-bg-dark);
}

.pf-how-it-works__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-how-it-works__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pf-how-it-works__header .pf-section-title { color: #f1f5f9; }
.pf-how-it-works__header .pf-section-desc { color: #94a3b8; }
.pf-how-it-works__header .pf-section-label { color: #818cf8; }

.pf-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pf-how-it-works__step {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--pf-radius);
  padding: 28px 24px;
  position: relative;
}

.pf-how-it-works__step-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--pf-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--pf-font-display);
  display: block;
}

.pf-how-it-works__step-icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 70, 229, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #818cf8;
  margin-bottom: 16px;
}

.pf-how-it-works__step-title {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pf-how-it-works__step-body {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pf-how-it-works__steps { grid-template-columns: 1fr; }
  .pf-how-it-works { padding: 64px 0; }
}

/* Target customer section */
.pf-target-customer {
  padding: 88px 0;
  background: var(--pf-bg-surface);
}

.pf-target-customer__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-target-customer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pf-target-customer__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 12px;
}

.pf-target-customer__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}

.pf-target-customer__body p {
  font-size: 16px;
  color: var(--pf-text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pf-target-customer__for-box,
.pf-target-customer__not-for-box {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: 10px;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.pf-target-customer__not-for-box {
  border-left: 3px solid #e11d48;
  background: #fff5f5;
}

.pf-target-customer__box-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pf-accent);
  margin-bottom: 8px;
  display: block;
}

.pf-target-customer__not-for-box .pf-target-customer__box-label {
  color: #e11d48;
}

.pf-target-customer__box-text {
  font-size: 14px;
  color: var(--pf-text-body);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .pf-target-customer__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Stage focus */
.pf-stage-focus {
  padding: 72px 0;
  background: #ffffff;
  border-top: 1px solid var(--pf-border);
}

.pf-stage-focus__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pf-stage-focus__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  flex-shrink: 0;
}

.pf-stage-focus__badge-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pf-accent);
}

.pf-stage-focus__badge-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--pf-text-primary);
}

.pf-stage-focus__text {
  font-size: 15px;
  color: var(--pf-text-muted);
  line-height: 1.65;
  flex: 1;
  min-width: 260px;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.pf-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.pf-text-center { text-align: center; }

/* ============================================================
   RESPONSIVE BASE
   ============================================================ */
@media (max-width: 768px) {
  .pf-page-hero__title { font-size: 28px; }
  .pf-section-title { font-size: 26px; }
  .pf-cta__title { font-size: 24px; }
}

/* ============================================================
   BLOG ARTICLE — pf-post (blog reading width §0 MANDATORY)
   ============================================================ */
.pf-post {
  background: #ffffff;
}

.pf-post__header {
  background: var(--pf-bg-surface);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--pf-border);
}

.pf-post__header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.pf-post__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--pf-text-primary);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.pf-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pf-post__byline {
  font-size: 14px;
  font-weight: 600;
  color: var(--pf-text-primary);
}

.pf-post__date {
  font-size: 14px;
  color: var(--pf-text-muted);
}

.pf-post__cover {
  background: var(--pf-bg-dark);
  padding: 0;
}

.pf-post__cover-wrap {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.pf-post__cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reading width — MANDATORY (standards/components/blog-article.md §0) */
.pf-post__body {
  max-width: 720px;
  margin: 48px auto 64px;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--pf-text-body);
}

.pf-post__body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.pf-post__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin: 32px 0 12px;
}

.pf-post__body p { margin-bottom: 20px; }

.pf-post__body ul,
.pf-post__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.pf-post__body li { margin-bottom: 8px; }

.pf-post__body a { color: var(--pf-accent); text-decoration: underline; }
.pf-post__body a:hover { opacity: 0.8; }

.pf-post__body blockquote {
  border-left: 3px solid var(--pf-accent);
  margin: 28px 0;
  padding: 16px 24px;
  background: var(--pf-bg-surface);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--pf-text-muted);
}

/* Article meta classes */
.article-category-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pf-accent);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.18);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ============================================================
   RELATED ARTICLES — pf-related
   ============================================================ */
.pf-related {
  padding: 64px 0 80px;
  background: var(--pf-bg-surface);
  border-top: 1px solid var(--pf-border);
}

.pf-related__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-related__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 32px;
}

.pf-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pf-related__card {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.pf-related__card:hover {
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}

.pf-related__thumb-link {
  display: block;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  overflow: hidden;
}

.pf-related__thumb-link img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pf-related__thumb-link:hover img {
  transform: scale(1.03);
}

.pf-related__card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  padding: 16px 18px;
  margin: 0;
  flex: 1;
}

.pf-related__card h3 a {
  color: var(--pf-text-primary);
  text-decoration: none;
}
.pf-related__card h3 a:hover { color: var(--pf-accent); opacity: 1; }

@media (max-width: 768px) {
  .pf-related__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG INDEX — pf-blog-index / pf-blog-grid
   ============================================================ */
.pf-blog-index {
  padding: 72px 0 88px;
  background: #ffffff;
}

.pf-blog-index__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-blog-grid {
  /* container for the grid */
}

.pf-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pf-blog-grid__list > li {
  list-style: none;
}

.pf-blog-grid__item {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pf-blog-grid__item:hover {
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.pf-blog-grid__item-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.pf-blog-grid__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pf-blog-grid__item-thumb:hover img {
  transform: scale(1.03);
}

.pf-blog-grid__item-thumb-link {
  display: block;
}

.pf-blog-grid__item-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pf-blog-grid__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pf-blog-grid__item-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pf-accent);
  background: rgba(79, 70, 229, 0.08);
  padding: 3px 10px;
  border-radius: 12px;
}

.pf-blog-grid__item-date {
  font-size: 13px;
  color: var(--pf-text-muted);
}

.pf-blog-grid__item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pf-text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.pf-blog-grid__item-title a {
  color: var(--pf-text-primary);
  text-decoration: none;
}
.pf-blog-grid__item-title a:hover { color: var(--pf-accent); opacity: 1; }

.pf-blog-grid__item-excerpt {
  font-size: 14px;
  color: var(--pf-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.pf-blog-grid__item-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--pf-accent);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pf-blog-grid__item-link:hover { opacity: 0.8; }

@media (max-width: 900px) {
  .pf-blog-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .pf-blog-grid__list { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES — pf-legal
   ============================================================ */
.pf-legal {
  background: #ffffff;
  padding: 64px 0 88px;
}

.pf-legal__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-legal-body {
  background: #ffffff;
}

.pf-legal-body__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--pf-text-body);
}

.pf-legal-body__inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin: 36px 0 12px;
}

.pf-legal-body__inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin: 28px 0 10px;
}

.pf-legal-body__inner p { margin-bottom: 16px; }

.pf-legal-body__inner ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.pf-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.pf-legal-table th,
.pf-legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--pf-border);
  text-align: left;
}

.pf-legal-table th {
  background: var(--pf-bg-surface);
  font-weight: 700;
  color: var(--pf-text-primary);
}

/* ============================================================
   PRICING PAGE — pf-pricing
   ============================================================ */
.pf-pricing {
  padding: 88px 0;
  background: var(--pf-bg-surface);
}

.pf-pricing__inner {
  max-width: var(--pf-container);
  margin: 0 auto;
  padding: 0 24px;
}

.pf-pricing__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.pf-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pf-pricing__card {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}

.pf-pricing__card:hover {
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.1);
}

.pf-pricing__card--featured {
  border-color: var(--pf-accent);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.12);
}

.pf-pricing__featured-badge {
  display: inline-block;
  background: var(--pf-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.pf-pricing__tier {
  font-size: 22px;
  font-weight: 700;
  color: var(--pf-text-primary);
  margin-bottom: 14px;
  font-family: var(--pf-font-display);
}

.pf-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.pf-pricing__price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--pf-text-primary);
  font-family: var(--pf-font-display);
  line-height: 1;
}

.pf-pricing__price-period {
  font-size: 15px;
  color: var(--pf-text-muted);
}

.pf-pricing__card-desc {
  font-size: 14px;
  color: var(--pf-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pf-border);
}

.pf-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pf-pricing__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--pf-text-body);
  line-height: 1.5;
  margin-bottom: 10px;
}

.pf-pricing__feature-item i {
  color: var(--pf-accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-pricing__cta {
  display: block;
  text-align: center;
  width: 100%;
}

.pf-pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--pf-text-muted);
  margin-top: 36px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pf-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---- c-post__body alias (for verify_site.py blog-article.md §0 check) ---- */
.c-post__body {
  max-width: 720px;
  margin: 48px auto 64px;
  padding: 0 24px;
}
