/* =========================================================================
   COMPONENTS — Nav, buttons, cards, badges, FAQ, timeline, pricing, etc.
   Mobile-first: base styles target phone, then we add tablet/desktop layers.
   ========================================================================= */

/* ============= STICKY NAV (liquid glass) ============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 0.75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav__inner {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.75rem 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: var(--transition);
}
.nav.scrolled .nav__inner {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--fw-black);
  font-size: 1.0625rem;
  letter-spacing: var(--tracking-tight);
  color: var(--primary);
}
.nav__brand-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  box-shadow: 0 0 12px var(--primary-glow);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  background: var(--accent-cta);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__cta:hover {
  transform: translateY(-1px);
  background: var(--pink-700);
  box-shadow: var(--shadow-btn-hover);
}
.nav__cta:active { transform: translateY(0); }
@media (max-width: 480px) {
  .nav__cta-label-long { display: none; }
}

/* ============= BUTTONS ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: var(--fw-semibold);
  font-size: 1.0625rem;
  line-height: 1.2;
  padding: 1.0625rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-height: 52px;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-cta) 0%, var(--pink-700) 100%);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-700) 0%, var(--magenta) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}
.btn--primary:hover::after { opacity: 1; }

/* Shimmer sweep across primary CTA */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}
.btn--primary:hover::before { animation: shimmer 1.2s ease-out; }
@keyframes shimmer { to { left: 130%; } }

.btn--ghost {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  color: var(--primary);
  border: 1px solid var(--glass-border);
}
.btn--ghost:hover {
  background: var(--glass-bg-strong);
  transform: translateY(-2px);
}

/* Pulsing CTA — used on the main pricing CTA. Pink glow, not purple. */
.btn--pulse { animation: btn-pulse 2.4s var(--ease-in-out) infinite; }
.btn--pulse:hover { animation: none; }
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247, 30, 83, 0.50), var(--shadow-btn); }
  50%      { box-shadow: 0 0 0 18px rgba(247, 30, 83, 0), var(--shadow-btn); }
}

/* CTA inside dark/deep sections — keep contrast */
.block--deep .btn--primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.3);
}
.block--deep .btn--primary::after {
  background: var(--gray-bg);
}
.block--deep .btn--primary:hover { color: var(--primary-700); }

/* ============= HIGHLIGHTS / TEXT DECORATIONS ========================== */
.highlight-yellow {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.highlight-yellow::after {
  content: '';
  position: absolute;
  left: -0.1em; right: -0.1em;
  bottom: 0.08em;
  height: 0.42em;
  background: linear-gradient(90deg, var(--yellow), rgba(251, 187, 65, 0.4));
  border-radius: var(--radius-pill);
  z-index: -1;
  opacity: 0.85;
}

/* ============= CARDS / GRIDS ========================================== */
.grid { display: grid; gap: clamp(1rem, 0.5rem + 1.5vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Generic premium card */
.card {
  position: relative;
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--glass-highlight), transparent 50%, rgba(255, 255, 255, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.card > * { position: relative; z-index: 2; }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(57, 23, 147, 0.25);
}

/* Icon wrappers */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  margin-bottom: 1.125rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  z-index: 1;
}
.icon-wrap > svg { position: relative; z-index: 2; }
.bg-pink    { background-color: rgba(247, 30, 83, 0.14); color: var(--pink); }
.bg-yellow  { background-color: rgba(251, 187, 65, 0.20); color: #B0760F; }
.bg-orange  { background-color: rgba(247, 88, 31, 0.14); color: var(--orange); }
.bg-magenta { background-color: rgba(152, 18, 85, 0.14); color: var(--magenta); }
.bg-primary { background-color: rgba(57, 23, 147, 0.14); color: var(--primary); }
.bg-green   { background-color: rgba(16, 185, 129, 0.14); color: var(--green); }
.bg-gray    { background-color: rgba(91, 90, 120, 0.12); color: var(--text-secondary); }

/* ============= PILLS / BADGES / TAGS ================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.pill--muted { color: var(--text-secondary); text-decoration: line-through; opacity: 0.75; background: var(--gray-light); border-color: transparent; }
.pill--soon {
  background: rgba(152, 18, 85, 0.12);
  border-color: rgba(152, 18, 85, 0.25);
  color: var(--magenta);
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  vertical-align: middle;
  margin-left: 0.5rem;
}
.pill--yellow {
  background: var(--yellow);
  color: var(--text-dark);
  border-color: transparent;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: var(--fw-black);
}

/* ============= FLOATING BADGES (hero) ================================ */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  color: var(--primary);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  z-index: 4;
  animation: floaty 6s var(--ease-in-out) infinite;
}
.float-badge .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  color: var(--white);
}
.float-badge--1 { top: 12%; right: -8px; animation-delay: 0s; }
.float-badge--2 { bottom: 14%; left: -8px; animation-delay: 2s; }
@media (min-width: 768px) {
  .float-badge--1 { right: -24px; }
  .float-badge--2 { left: -24px; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============= TIMELINE (Bloque 2) =================================== */
.timeline {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gray-200) 0%, var(--primary-300) 100%);
}
.timeline__item { position: relative; color: var(--text-secondary); font-size: 1.0625rem; line-height: var(--lh-relaxed); }
.timeline__item strong { color: var(--text-dark); font-weight: var(--fw-semibold); }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--magenta);
  box-shadow: 0 0 0 4px var(--white), 0 0 12px rgba(152, 18, 85, 0.3);
}

/* ============= QUOTE CARDS (Bloque 2) ================================ */
.quote-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 30, 83, 0.25);
}
.quote-card .quote-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: 50%;
  background: rgba(247, 30, 83, 0.08);
  color: var(--pink);
}
.quote-card .quote-text {
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  color: var(--primary);
  font-style: italic;
  margin-top: 0.25rem;
}

/* ============= HIGHLIGHT BOX (Bloque 4) ============================== */
.highlight-box {
  background: rgba(247, 30, 83, 0.06);
  border-left: 4px solid var(--pink);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
}
.highlight-box p { color: var(--text-dark); font-weight: var(--fw-medium); }
.highlight-box p + p { margin-top: 0.5rem; color: var(--text-secondary); font-weight: var(--fw-regular); }

/* ============= FLOW DIAGRAM (Bloque 4) =============================== */
.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.flow-node {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 2px solid var(--gray-200);
  color: var(--text-secondary);
  min-width: 180px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.flow-connector {
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, var(--gray-200), var(--magenta), var(--pink), var(--orange), var(--yellow));
  border-radius: 3px;
}
.node-start { border-color: var(--gray-200); color: var(--text-secondary); }
.node-step1 { border-color: var(--magenta); color: var(--magenta); }
.node-step2 { border-color: var(--pink); color: var(--pink); }
.node-step3 { border-color: var(--orange); color: var(--orange); }
.node-end { background: linear-gradient(135deg, var(--yellow), #FFD379); border-color: transparent; color: var(--text-dark); }
@media (min-width: 768px) {
  .flow-diagram {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 1rem;
  }
  .flow-node { min-width: 140px; }
  .flow-connector { width: 100%; height: 3px; margin-inline: -10px; background: linear-gradient(90deg, var(--gray-200), var(--magenta), var(--pink), var(--orange), var(--yellow)); }
}

/* ============= PILLAR CARDS (Bloque 4) =============================== */
.pillar-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(57, 23, 147, 0.25); }
.pillar-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: var(--fw-black);
  line-height: 1;
  color: rgba(57, 23, 147, 0.05);
  z-index: 0;
}
.pillar-card:nth-child(1)::before { content: '1'; }
.pillar-card:nth-child(2)::before { content: '2'; }
.pillar-card:nth-child(3)::before { content: '3'; }
.pillar-card > * { position: relative; z-index: 2; }
.pillar-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--primary);
  background: rgba(57, 23, 147, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1rem;
}

/* ============= PRICING / OFFER BOX (Bloque 6) ======================== */
.offer-box {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.offer-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--glass-highlight), transparent 40%, rgba(122, 91, 200, 0.3) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.stack-column { padding: 2.5rem 2rem; position: relative; z-index: 2; }
.pricing-column {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(57, 23, 147, 0.04), rgba(152, 18, 85, 0.04));
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .offer-box { grid-template-columns: 1.2fr 0.8fr; }
  .pricing-column { border-top: none; border-left: 1px solid var(--glass-border); }
}
.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.stack-list { display: flex; flex-direction: column; gap: 1rem; }
.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}
.stack-item strong { color: var(--text-dark); }
.check-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--green);
  background: rgba(16, 185, 129, 0.14);
  padding: 4px;
  border-radius: 50%;
  display: inline-flex;
}
.old-price {
  font-size: 1.25rem;
  color: var(--pink);
  text-decoration: line-through;
  font-weight: var(--fw-semibold);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.new-price {
  font-family: var(--font-display);
  font-size: var(--fs-price);
  font-weight: var(--fw-black);
  color: var(--primary);
  line-height: 1;
  letter-spacing: var(--tracking-tighter);
}
.price-currency { font-size: 1.25rem; font-weight: var(--fw-bold); color: var(--primary); vertical-align: top; }

/* ============= FAQ (Bloque 9) ======================================== */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur-mobile)) saturate(160%);
  backdrop-filter: blur(var(--glass-blur-mobile)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(57, 23, 147, 0.25); box-shadow: var(--shadow-md); }
.faq-item > summary { list-style: none; cursor: pointer; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-left: 1rem;
  color: var(--primary);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}
.faq-icon::before { top: 11px; left: 2px; width: 20px; height: 2px; }
.faq-icon::after  { top: 2px; left: 11px; width: 2px; height: 20px; }
.faq-item[open] { border-color: rgba(57, 23, 147, 0.3); background: var(--glass-bg-strong); }
.faq-item[open] .faq-question { color: var(--primary); border-bottom: 1px solid var(--gray-200); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: var(--lh-relaxed);
  animation: faq-open 0.32s var(--ease-out);
}
.faq-answer strong { color: var(--text-dark); font-weight: var(--fw-semibold); }
.faq-answer ul { margin-top: 0.75rem; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: disc; }
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============= SUPPORT BOX (Bloque 9, sin botón WhatsApp) ============ */
.support-box {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.support-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--magenta), var(--primary));
}
.support-title {
  font-size: 1.5rem;
  font-weight: var(--fw-black);
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.support-text {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

/* ============= CREATOR CARD (Bloque 8) =============================== */
.creator-card {
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}
.creator-photo {
  width: min(280px, 100%);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-300), var(--magenta));
  margin-bottom: 1.25rem;
  display: block;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.creator-name { font-size: 1.5rem; font-weight: var(--fw-black); color: var(--primary); margin-bottom: 0.25rem; }
.creator-title { color: var(--magenta); font-size: 0.875rem; font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: var(--tracking-wide); }

/* ============= PULL QUOTE / INSIGHT BOX ============================== */
.pull-quote {
  font-size: clamp(1.25rem, 1rem + 1.5vw, 1.625rem);
  font-weight: var(--fw-bold);
  color: var(--primary);
  line-height: 1.4;
  border-left: 4px solid var(--yellow);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
}
.insight-box {
  background: rgba(152, 18, 85, 0.05);
  border: 1px solid rgba(152, 18, 85, 0.18);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 1rem 0;
}
.insight-box p { font-size: 1.0625rem; color: var(--text-dark); margin-bottom: 1rem; line-height: var(--lh-relaxed); }
.insight-box p:last-child { margin-bottom: 0; }
.insight-highlight { color: var(--magenta); font-weight: var(--fw-bold); }

/* ============= COMMITMENT BOX (Bloque 7) ============================= */
.commitment-box {
  background: rgba(57, 23, 147, 0.05);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
  margin-top: 2rem;
}
.commitment-title { font-size: 1.375rem; font-weight: var(--fw-black); color: var(--primary); margin-bottom: 1rem; }
.commitment-text { color: var(--text-dark); font-size: 1.0625rem; margin-bottom: 0.75rem; line-height: var(--lh-relaxed); }
.commitment-text:last-child { margin-bottom: 0; }

/* ============= GUARANTEE SHIELD ICON ================================= */
.shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(152, 18, 85, 0.12), rgba(152, 18, 85, 0.06));
  color: var(--magenta);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  isolation: isolate;
}
.shield-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid var(--glass-highlight);
  z-index: -1;
}

/* ============= TRUST / URGENCY GRID ================================== */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

.urgency-box {
  background: rgba(251, 187, 65, 0.08);
  border: 1px solid rgba(251, 187, 65, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.trust-box {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

/* ============= CROSSROADS (Bloque 6) ================================= */
.crossroads-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .crossroads-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.path-card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  border: 1px solid;
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.path-pain    { background: rgba(91, 90, 120, 0.06); border-color: var(--gray-200); }
.path-pleasure { background: rgba(57, 23, 147, 0.06); border-color: rgba(57, 23, 147, 0.22); }

/* ============= FOOTER ================================================ */
.site-footer {
  padding: 3rem var(--gutter) 2rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(57, 23, 147, 0.06));
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.site-footer .brand { color: var(--primary); font-weight: var(--fw-black); }
.site-footer a { color: var(--primary); font-weight: var(--fw-semibold); }
.site-footer a:hover { text-decoration: underline; }

/* =========================================================================
   EXTENSIONS — taste-design skill
   ========================================================================= */

/* ----- Story grid (Bloque 8) — replaces fragile #bloque-8 > div > div -- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 1rem + 4vw, 5rem);
  align-items: start;
}
@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 4fr 6fr;
    gap: 5rem;
  }
  .story-grid > .story-visual { position: sticky; top: 120px; }
  .story-grid + .reveal h2,
  .story-grid h2.story-heading { font-size: var(--fs-h1); }
}

/* ----- Inline icon utility (replaces emojis in copy) ------------------- */
.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  vertical-align: -0.25em;
  color: currentColor;
  flex-shrink: 0;
}
.icon-inline svg { width: 100%; height: 100%; }

/* Variant: warm yellow icon */
.icon-inline--warm { color: var(--accent-warm); }
/* Variant: action pink icon */
.icon-inline--cta { color: var(--accent-cta); }
/* Variant: muted icon */
.icon-inline--muted { color: var(--text-secondary); }
/* Variant: positive green */
.icon-inline--positive { color: var(--green); }

/* ----- Inline icon as section header decorator -------------------------- */
.section-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
}
.section-icon .icon-inline { width: 1.6em; height: 1.6em; }

/* ----- Path card with icon (Bloque 6 crossroads) ----------------------- */
.path-card { display: flex; gap: 0.875rem; align-items: flex-start; }
.path-card .path-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  margin-top: 0.125rem;
}
.path-pain .path-icon { background: rgba(91, 90, 120, 0.12); color: var(--text-secondary); }
.path-pleasure .path-icon { background: rgba(16, 185, 129, 0.14); color: var(--green); }

/* ----- Pulse dot (status indicator in pills) --------------------------- */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse-dot 2s var(--ease-in-out) infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ----- Flow node icons ------------------------------------------------- */
.flow-node svg { display: inline-block; vertical-align: -0.15em; }
.flow-node .node-emoji-replace {
  display: inline-flex;
  width: 1.2em; height: 1.2em;
  margin-right: 0.35em;
  vertical-align: -0.2em;
}
