  /* ============================================
     PRICING PAGE - Blueprint design system
     ============================================ */

  /* Hero Section */
  .pricing-hero {
  	padding-top: var(--space-16);
  	padding-bottom: var(--space-16);
  	text-align: center;
  	background: transparent;
  	position: relative;
  	border-bottom: 1px solid var(--border-default);
  }

  .pricing-hero::after {
  	content: '';
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	height: 60px;
  	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
  	pointer-events: none;
  	z-index: 2;
  }

  .pricing-hero-inner {
  	max-width: 1200px;
  	margin: 0 auto;
  	position: relative;
  	z-index: 1;
  }

  .pricing-hero h1 {
  	font-size: clamp(2rem, 4vw, 3rem);
  	font-weight: 800;
  	letter-spacing: var(--letter-spacing-tighter);
  	margin-top: 0;
  	margin-bottom: var(--space-4);
  	color: var(--text-primary);
  }

  .pricing-hero p {
  	font-size: clamp(1rem, 1.5vw, var(--font-size-lg));
  	color: var(--text-secondary);
  	max-width: 500px;
  	margin-left: auto;
  	margin-right: auto;
  	line-height: var(--line-height-relaxed);
  }

  /* ============================================
     PRICING — Blueprint Grid
     ============================================ */
  #pricing-section {
  	padding-top: 0;
  	padding-bottom: 0;
  }

  .pricing-bp-row {
  	background: none;
  	border: none;
  	border-top: 1px solid var(--border-default);
  	border-radius: 0;
  	padding: 0;
  	overflow: visible;
  	position: relative;
  }

  .pricing-bp-grid {
  	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  }

  /* Card — flat, no radius, border-separated */
  .pricing-bp-card {
  	padding: var(--space-16) var(--space-10);
  	display: flex;
  	flex-direction: column;
  	position: relative;
  	border-right: 1px solid var(--border-default);
  }

  .pricing-bp-card:last-child {
  	border-right: none;
  }

  /* Featured card — subtle blue tint */
  .pricing-bp-card-featured {
  	background: rgba(59, 130, 246, 0.04);
  }

  /* Badge — flush top-left corner */
  .pricing-bp-badge {
  	position: absolute;
  	top: 0;
  	left: 0;
  	padding: var(--space-2) var(--space-4);
  	background: var(--blue-500);
  	color: white;
  	font-size: 0.625rem;
  	font-weight: 700;
  	text-transform: uppercase;
  	letter-spacing: var(--letter-spacing-wider);
  	border-right: 1px solid var(--border-default);
  	border-bottom: 1px solid var(--border-default);
  }

  /* Header */
  .pricing-bp-header {
  	margin-bottom: var(--space-6);
  }

  .pricing-bp-header .rc-row-label {
  	margin-bottom: var(--space-2);
  }

  .pricing-bp-header h3 {
  	font-size: var(--font-size-base);
  	font-weight: 400;
  	color: var(--text-secondary);
  	margin: 0;
  	line-height: var(--line-height-normal);
  }

  /* Price */
  .pricing-bp-price {
  	margin-bottom: var(--space-8);
  }

  .pricing-bp-amount {
  	font-size: clamp(2.25rem, 4vw, 3rem);
  	font-weight: 700;
  	letter-spacing: var(--letter-spacing-tighter);
  	color: var(--text-primary);
  	line-height: 1;
  }

  .pricing-bp-period {
  	font-size: var(--font-size-sm);
  	color: var(--text-muted);
  	margin-left: 4px;
  }

  /* Features list */
  .pricing-bp-features {
  	list-style: none;
  	margin: 0 0 var(--space-10);
  	padding: 0;
  	flex-grow: 1;
  	display: flex;
  	flex-direction: column;
  	gap: var(--space-4);
  }

  .pricing-bp-features li {
  	display: flex;
  	align-items: center;
  	gap: var(--space-3);
  	font-size: var(--font-size-sm);
  	color: var(--text-secondary);
  	line-height: var(--line-height-snug);
  }

  .pricing-bp-features li i {
  	font-size: 14px;
  	color: var(--blue-400);
  	flex-shrink: 0;
  }

  /* CTA buttons */
  .pricing-bp-cta {
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	gap: var(--space-2);
  	padding: var(--space-4) var(--space-6);
  	font-size: var(--font-size-sm);
  	font-weight: 600;
  	text-decoration: none;
  	transition: all 200ms ease;
  	border: 1px solid var(--border-default);
  	border-radius: var(--radius-pill);
  }

  .pricing-bp-cta i {
  	font-size: 14px;
  	transition: transform 150ms ease;
  }

  .pricing-bp-cta:hover i {
  	transform: translateX(2px);
  }

  .pricing-bp-cta-primary {
  	background: var(--blue-500);
  	color: white;
  	border-color: var(--blue-500);
  	box-shadow: 0 0 24px rgba(59, 130, 246, 0.3);
  }

  .pricing-bp-cta-primary:hover {
  	background: var(--blue-400);
  	border-color: var(--blue-400);
  	box-shadow: 0 0 32px rgba(59, 130, 246, 0.4);
  }

  .pricing-bp-cta-secondary {
  	background: transparent;
  	color: var(--text-primary);
  }

  .pricing-bp-cta-secondary:hover {
  	background: rgba(255, 255, 255, 0.04);
  	border-color: rgba(255, 255, 255, 0.2);
  }

  /* ============================================
     FAQ — Blueprint row
     ============================================ */
  #pricing-faq-section {
  	padding-top: 0;
  	padding-bottom: 0;
  }

  .pricing-faq-row {
  	background: none;
  	border: none;
  	border-top: 1px solid var(--border-default);
  	border-bottom: 1px solid var(--border-default);
  	border-radius: 0;
  	padding: 0;
  	overflow: visible;
  	position: relative;
  	--bp-rail-extend-bottom: -40px;
  }

  /* ============================================
     Responsive
     ============================================ */
  @media (max-width: 900px) {
  	.pricing-bp-grid {
  		grid-template-columns: 1fr;
  	}

  	.pricing-bp-card {
  		border-right: none;
  		border-bottom: 1px solid var(--border-default);
  		padding: var(--space-16) var(--space-10);
  	}

  	.pricing-bp-card:last-child {
  		border-bottom: none;
  	}

  	/* Move featured card to top on mobile */
  	.pricing-bp-card-featured {
  		order: -1;
  	}
  }

  @media (max-width: 600px) {
  	.pricing-bp-card {
  		padding: var(--space-16) var(--space-8);
  	}

  	.pricing-bp-amount {
  		font-size: 2rem;
  	}
  }

  </style>