/* Talisos — landing. Paleta y tipografía de styles/brand-styling.md.
   HTML5 puro, sin framework. Idéntico en es/ y en/. */

/* Inter variable (latin), self-hosted — un solo woff2 cubre 400-900. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #1E3A5F;
  --teal: #0D9488;
  --teal-soft: #F0FDFA;
  --accent: #F59E0B;
  --bg: #F8FAFC;
  --bg-muted: #F1F5F9;
  --card: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-muted-strong: #475569; /* AA sobre --bg-muted (el muted normal queda bajo 4.5:1 ahí) */
  --border: #E2E8F0;
  --success: #10B981;
  --radius-card: 12px;
  --radius-btn: 8px;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.10);
  --maxw: 1200px;
  --maxw-prose: 720px;
}

* { box-sizing: border-box; }

::selection { background: rgba(245, 158, 11, 0.35); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

a { color: var(--teal); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--card);
  color: var(--brand);
  padding: 10px 16px;
  z-index: 10;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-lockup svg { width: 36px; height: 36px; display: block; }
.brand-name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: #d98a09; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(217, 138, 9, 0.35); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn-lg { font-size: 1.125rem; padding: 16px 32px; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-sm { font-size: 0.9rem; padding: 8px 18px; min-height: 40px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  color: #fff;
  padding: 120px 0 72px;
  text-align: center;
  overflow: hidden;
}
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(1.9rem, 1.6vw + 1.1rem, 2.75rem);
  font-weight: 700;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
/* Franja ámbar bajo la frase clave del H1 (marcador sobrio, sin animación) */
.hero h1 .hl {
  font-style: normal;
  background: linear-gradient(to top, rgba(245, 158, 11, 0.5) 0.16em, transparent 0.16em);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.05em;
}
.hero .subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-microcopy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 14px 0 0;
}

/* Hero con visual del producto (solo index) */
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero-grid .hero-copy { text-align: center; }
.hero-shot { position: relative; margin: 8px auto 0; max-width: 720px; }
.hero-shot::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.16), transparent 72%);
  pointer-events: none;
}
.hero-shot .photo-shot {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg), 0 24px 48px rgba(4, 18, 36, 0.35);
}

@media (min-width: 1024px) {
  .hero.hero-with-shot { text-align: left; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; }
  .hero-grid .hero-copy { text-align: left; }
  .hero-grid .hero-copy h1, .hero-grid .hero-copy .subtitle { margin-left: 0; margin-right: 0; }
  .hero-grid .hero-actions { justify-content: flex-start; }
  .hero-shot { margin: 0; max-width: none; }
}

/* ---------- Secciones ---------- */
.section { padding: 72px 0; }
.section-muted { background: var(--bg-muted); }
.section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--brand);
  text-wrap: balance;
}
.section .lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-muted .lead { color: var(--text-muted-strong); }

/* ---------- Stats (S3) ---------- */
.stats-strip { background: var(--bg-muted); padding: 40px 0 32px; }
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}
.stat .stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}
.stat .stat-label {
  display: block;
  color: var(--text-muted-strong);
  font-size: 0.95rem;
  margin-top: 4px;
}
.stat .stat-source {
  display: block;
  color: var(--text-muted-strong);
  font-size: 0.75rem;
  margin-top: 4px;
}
.stats-close {
  text-align: center;
  font-weight: 600;
  color: var(--text);
  margin: 8px 0 0;
}

/* ---------- Cards genéricas ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
/* Hover lift sutil compartido por las cards del landing */
.card, .plan-step, .deliverable-card, .privacy-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card:hover, .plan-step:hover, .deliverable-card:hover, .privacy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}
.privacy-card:hover { border-color: var(--teal); }
.card h3 { font-size: 1.125rem; color: var(--brand); }
.card p { color: var(--text-muted); margin: 0; }

.pain-close {
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--brand);
  max-width: 720px;
  margin: 40px auto 0;
}

/* ---------- Pasos solución (S5) ---------- */
.plan-steps { counter-reset: plan; display: grid; gap: 24px; }
.plan-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.plan-step .plan-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.plan-step h3 { font-size: 1.125rem; color: var(--brand); margin-bottom: 6px; }
.plan-step p { color: var(--text-muted); margin: 0; }

/* ---------- Entregables (S6) ---------- */
.deliverables { display: grid; gap: 24px; }
.deliverable-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.deliverable-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.icon-circle {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  transition: background-color 200ms ease;
}
.deliverable-card:hover .icon-circle { background: #CCFBF1; }
.icon-circle svg { width: 24px; height: 24px; }
.deliverable-card h3 { font-size: 1.125rem; color: var(--brand); margin: 0; }
.deliverable-card .benefit { color: var(--text-muted); margin: 8px 0 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-muted);
  border-radius: 999px;
  padding: 5px 12px;
  transition: background-color 150ms ease;
}
.chips li:hover { background: var(--border); }
.deliverables-note {
  text-align: center;
  color: var(--text-muted);
  margin: 32px auto 0;
  max-width: 640px;
}
.deliverables-note strong { color: var(--brand); }

/* ---------- Muestra / showcase (S7) ---------- */
.feature-row {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.feature-row:first-of-type { margin-top: 8px; }
.feature-copy h3 { font-size: 1.375rem; margin: 0 0 12px; }
.feature-copy p { color: var(--text-muted-strong); margin: 0 0 12px; }
.feature-copy p:last-child { margin-bottom: 0; }
.feature-shot { margin: 0; }
.feature-grid-minor {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}
.feature-minor h3 { font-size: 1.125rem; margin: 16px 0 8px; }
.feature-minor p { font-size: 0.9375rem; color: var(--text-muted-strong); margin: 0; }
.shot {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--card);
  transition: box-shadow 200ms ease;
}
.shot img { display: block; width: 100%; height: auto; }
.shot-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  cursor: zoom-in;
  text-align: inherit;
}
.shot-zoom:hover .shot { box-shadow: var(--shadow-lg); }
.zoom-icon {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--brand);
  box-shadow: var(--shadow-md);
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
html.js .zoom-icon { display: flex; }
.shot-zoom:hover .zoom-icon { transform: scale(1.1); box-shadow: var(--shadow-lg); }
.lightbox {
  max-width: min(1200px, 94vw);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  background: var(--card);
}
.lightbox[open] { animation: lightbox-in 180ms ease-out; }
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox::backdrop { background: rgba(10, 22, 38, 0.72); }
.lightbox img { display: block; max-width: 100%; max-height: 88vh; width: auto; height: auto; }
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--brand);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.lightbox-close:hover { background: var(--bg-muted); }
html:has(dialog[open]) { overflow: hidden; }
.sample-link { text-align: center; margin-top: 20px; }
.sample-link a { font-weight: 600; }
@media (min-width: 720px) {
  .feature-grid-minor { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 48px;
    margin-top: 72px;
  }
  .feature-row:first-of-type { margin-top: 16px; }
  .feature-row:nth-of-type(even) { grid-template-columns: 1.15fr 1fr; }
  .feature-row:nth-of-type(even) .feature-shot { order: -1; }
  .feature-grid-minor { margin-top: 72px; }
}

/* ---------- Cómo funciona (S8) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.step { text-align: center; }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.0625rem; color: var(--brand); margin-bottom: 4px; }
.step p { color: var(--text-muted-strong); margin: 0; font-size: 0.95rem; }
.steps-reframe {
  text-align: center;
  font-style: italic;
  color: var(--text-muted-strong);
  max-width: 640px;
  margin: 36px auto 28px;
}
.steps-cta { text-align: center; }

/* ---------- Confianza (S9) ---------- */
.trust-grid { display: grid; gap: 24px; }
.trust-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  color: var(--brand);
}
.trust-block h3 svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.trust-block p { color: var(--text-muted); margin: 0; }
.privacy-card {
  border: 1px solid var(--teal);
  border-radius: var(--radius-card);
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.privacy-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  color: var(--brand);
  margin-top: 0;
}
.privacy-card h3 svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.privacy-card ul { margin: 0; padding-left: 20px; color: var(--text-muted); }
.privacy-card li { margin-bottom: 8px; }
.privacy-card li:last-child { margin-bottom: 0; }
.privacy-card strong { color: var(--text); }

/* ---------- Testimonios (S11) ---------- */
.testimonial-card { display: flex; flex-direction: column; }
.t-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}
.t-stars svg { width: 18px; height: 18px; }
.t-quote { margin: 0 0 20px; }
.t-quote p { font-style: italic; color: var(--text); }
.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  flex: none;
}
.t-avatar-teal { background: var(--teal-soft); color: #0F766E; } /* teal-700: --teal da 3.6:1 sobre teal-soft, bajo AA */
.t-avatar-amber { background: #FEF3C7; color: #B45309; }
.t-avatar-brand { background: #E8EEF5; color: var(--brand); }
.t-name { font-weight: 600; color: var(--text); margin: 0; }
.t-role { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---------- Precio (S10) ---------- */
.price-card {
  position: relative;
  max-width: 480px;
  margin: 40px auto 0;
  background: var(--card);
  border: 2px solid var(--brand);
  border-radius: var(--radius-card);
  padding: 40px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--brand);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
}
.price-figure { margin: 4px 0 2px; }
.price-figure .price-now {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}
.price-figure .price-was {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 10px;
}
.price-terms { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  text-align: left;
}
.price-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  margin-bottom: 8px;
}
.price-includes svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 4px; }
.risk-reversal {
  background: var(--teal-soft);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  padding: 12px 14px;
  margin-bottom: 22px;
}
.price-anchor {
  text-align: center;
  color: var(--text-muted-strong);
  max-width: 640px;
  margin: 28px auto 0;
  font-size: 0.95rem;
}

/* ---------- FAQ (S12) ---------- */
.faq-list { max-width: var(--maxw-prose); margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  padding: 18px 4px;
  list-style: none;
  min-height: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform 200ms ease;
  margin-right: 6px;
}
.faq-list details[open] summary::after { transform: rotate(225deg); }
.faq-list .faq-answer { padding: 0 4px 18px; color: var(--text-muted); }
@media (prefers-reduced-motion: no-preference) {
  .faq-list details[open] .faq-answer { animation: faq-in 220ms ease both; }
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
}
.faq-list .faq-answer p { margin: 0; }

/* ---------- CTA final (S13) ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.final-cta h2 { color: #fff; font-size: 2rem; }
.final-cta .final-line {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 28px;
}
.final-cta .hero-microcopy { margin-top: 14px; }
.founders-note {
  max-width: 640px;
  margin: 48px auto 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 28px;
}
.founders-note a { color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0;
  font-size: 0.9rem;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .brand-lockup svg { width: 28px; height: 28px; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

/* ---------- Highlight legacy (terminos/privacidad y usos varios) ---------- */
.highlight {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
}
.highlight strong { color: var(--accent); }

/* ---------- Blog / prosa ---------- */
.page-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  padding: 96px 0 40px;
  color: #fff;
}
.page-header .crumb {
  max-width: var(--maxw-prose);
  margin: 0 auto 14px;
  font-size: 0.875rem;
}
.page-header .crumb a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.page-header .crumb a:hover { color: #fff; text-decoration: underline; }
.page-header h1 { font-size: 2rem; max-width: var(--maxw-prose); margin: 0 auto; }
.page-header .page-meta {
  max-width: var(--maxw-prose);
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.prose {
  max-width: var(--maxw-prose);
  margin: 0 auto;
  padding: 40px 16px 64px;
}
.prose h2 { font-size: 1.5rem; color: var(--brand); margin: 1.6em 0 0.5em; }
.prose h3 { font-size: 1.185rem; color: var(--brand); margin: 1.4em 0 0.4em; }
.prose p, .prose li { color: var(--text); }
.prose img { border-radius: var(--radius-card); border: 1px solid var(--border); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 0 0 1.2em;
}
.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.prose th { background: var(--bg-muted); color: var(--brand); }
.prose blockquote {
  margin: 1.2em 0;
  padding: 14px 18px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 0 8px 8px 0;
}
.prose blockquote p { margin: 0; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 2em 0; }
.cta-box {
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  border-radius: var(--radius-card);
  padding: 24px;
  text-align: center;
  margin: 2em 0 0;
}
.cta-box p { margin: 0 0 14px; font-weight: 600; color: var(--brand); }
.post-list { list-style: none; margin: 0; padding: 0; }
.post-list li {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.post-list h2 { font-size: 1.25rem; margin: 0 0 6px; }
.post-list h2 a { color: var(--brand); text-decoration: none; }
.post-list h2 a:hover { color: var(--teal); }
.post-list p { color: var(--text-muted); margin: 0 0 4px; }
.post-list .post-date { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Reveal on scroll ----------
   Progressive: el JS agrega html.anim + .reveal SOLO si hay IntersectionObserver
   y sin prefers-reduced-motion; sin JS todo queda visible. El hero no se anima (LCP). */
@media (prefers-reduced-motion: no-preference) {
  .anim .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 550ms cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 550ms cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--rd, 0ms);
  }
  .anim .reveal.in { opacity: 1; transform: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .plan-steps { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .deliverable-card.deliverable-wide { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
