/* ============================================================
   DUNITY — páginas de producto  (hereda blog.css)
   ============================================================ */

.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--faint); margin: 4px 0 20px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }
.crumbs span { margin: 0 8px; opacity: .5; }

.article .lead { color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.55; max-width: 54ch; margin: 0 0 40px; }
.article h2 { font-size: clamp(24px, 3.4vw, 30px); font-weight: 600; letter-spacing: -0.02em; margin: 52px 0 20px; }
.article > .wrap-article ul:not(.pricing-list) { list-style: none; padding: 0; margin: 0 0 28px; font-size: 17px; line-height: 1.65; color: #e6e6e4; }
.article > .wrap-article ul:not(.pricing-list) > li { position: relative; padding-left: 30px; margin-bottom: 13px; }
.article > .wrap-article ul:not(.pricing-list) > li::before {
  content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--art-accent); box-shadow: 0 0 10px color-mix(in srgb, var(--art-accent) 70%, transparent);
}
.article ul li strong { color: #fff; }

/* ---------- grilla de libros ---------- */
.book-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 0 0 24px; }
.book-card {
  display: flex; gap: 18px; padding: 18px;
  border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, var(--card-2), var(--card));
  transition: border-color .25s, transform .3s var(--ease);
}
.book-card:hover { border-color: var(--art-accent); transform: translateY(-3px); }
.book-cover { flex: none; width: 92px; }
.book-cover img { width: 92px; height: 138px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line-2); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.9); }
.book-meta { display: flex; flex-direction: column; gap: 6px; }
.book-author { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.book-title { font-size: 18px; font-weight: 600; line-height: 1.2; }
.book-blurb { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- ficha de libro ---------- */
.ficha { display: grid; grid-template-columns: 220px 1fr; gap: 34px; align-items: start; margin: 8px 0 12px; }
.ficha-cover img { width: 100%; border-radius: 14px; border: 1px solid var(--line-2); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.95); }
.ficha-main h1 { margin: 0 0 16px; }
.ficha-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 24px; }
.feature { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, var(--card-2), var(--card)); }
.feature .f-k { display: block; font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #fff; }
.feature p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- nota app-only + descarga ---------- */
.app-note {
  font-size: 15px; line-height: 1.6; color: var(--muted);
  border-left: 2px solid var(--art-accent); padding: 4px 0 4px 16px; margin: 0 0 30px;
}
.app-note a { color: var(--art-accent); border-bottom: 1px solid color-mix(in srgb, var(--art-accent) 40%, transparent); }
.download-hero { display: flex; justify-content: flex-start; margin: 30px 0; }
.download-hero .cta-stores { gap: 14px; }

/* ---------- pricing ---------- */
.pricing {
  border: 1px solid color-mix(in srgb, var(--art-accent) 40%, var(--line-2)); border-radius: 22px;
  padding: 34px 32px; background: linear-gradient(180deg, var(--card-2), var(--card));
  box-shadow: 0 0 60px -22px color-mix(in srgb, var(--art-accent) 55%, transparent); max-width: 460px;
}
.pricing-price { display: flex; align-items: baseline; gap: 8px; }
.pricing-amount { font-size: 48px; font-weight: 600; letter-spacing: -0.03em; }
.pricing-period { color: var(--muted); font-size: 18px; }
.pricing-trial { color: var(--art-accent); font-family: var(--mono); font-size: 13px; margin: 6px 0 22px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 26px; }
.pricing-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15.5px; color: #e6e6e4; }
.pricing-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--art-accent); font-weight: 700;
}
.pricing .cta-stores { margin-top: 4px; }
.pricing-fine { color: var(--faint); font-size: 12.5px; line-height: 1.5; margin: 18px 0 0; }

@media (max-width: 640px) {
  .book-grid, .feature-grid { grid-template-columns: 1fr; }
  .ficha { grid-template-columns: 1fr; gap: 22px; }
  .ficha-cover { max-width: 200px; }
}
