:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-2: #eef7ff;
  --ink: #10243f;
  --muted: #60738c;
  --line: #dceafd;
  --brand: #1d5fa7;
  --brand-2: #3b8eea;
  --accent: #71c7ff;
  --accent-soft: #edf8ff;
  --success: #21866f;
  --shadow: 0 18px 48px rgba(29, 95, 167, .10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, #e6f4ff 0, transparent 34rem), radial-gradient(circle at top right, #f2f8ff 0, transparent 28rem), var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: white; padding: 8px 12px; border-radius: 8px; }
.skip-link:focus { left: 8px; z-index: 20; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 251, 255, .90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 228, 223, .75);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.logo-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 15px; color: white; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 10px 26px rgba(15, 61, 76, .24); font-size: 27px; font-weight: 900; line-height: 1; letter-spacing: -.04em; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.nav { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 15px; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--brand); }

.hero { padding: 76px 0 46px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; align-items: center; }
.eyebrow { color: var(--brand-2); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 24px; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 720px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: white; box-shadow: 0 14px 28px rgba(59, 142, 234, .20); }
.btn-primary:hover { background: #092f3d; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.55); color: var(--brand); }
.btn-secondary:hover { background: white; }

.trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.score { display: grid; gap: 14px; margin-top: 18px; }
.score-row { display: grid; grid-template-columns: 95px 1fr 44px; gap: 12px; align-items: center; font-size: 14px; color: var(--muted); }
.bar { height: 9px; background: #e7ece8; border-radius: 999px; overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand-2), var(--accent)); border-radius: inherit; }

.section { padding: 56px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-head p { color: var(--muted); max-width: 620px; margin: 12px 0 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 10px 30px rgba(16,32,39,.06); }
.card p { color: var(--muted); margin-bottom: 0; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: #15517f; font-size: 13px; font-weight: 750; margin-bottom: 18px; }

.article-list { display: grid; gap: 14px; }
.article-item { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; }
.article-item:hover { border-color: rgba(20,115,95,.45); box-shadow: 0 10px 26px rgba(16,32,39,.08); }
.article-item p { color: var(--muted); margin: 6px 0 0; }

.note { background: var(--surface-2); border: 1px solid #d7e4de; border-radius: var(--radius); padding: 24px; color: var(--muted); }
.disclosure { font-size: 14px; color: var(--muted); }
.site-footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

.article-page main { max-width: 820px; }
.article-hero { padding: 58px 0 28px; }
.article-meta { color: var(--muted); margin-top: 16px; }
.prose { font-size: 18px; }
.prose h2 { margin-top: 42px; font-size: 34px; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #34464d; }
.comparison { width: 100%; border-collapse: collapse; margin: 24px 0; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: table; }
.comparison th, .comparison td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { background: #eef4f1; color: var(--brand); }
.callout { border-left: 4px solid var(--brand-2); background: #eef7ff; padding: 18px; border-radius: 14px; }
.editorial-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 26px;
}
.editorial-proof .proof-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  padding: 16px;
  color: var(--muted);
}
.editorial-proof strong { display: block; color: var(--brand); margin-bottom: 6px; }
.review-note {
  border: 1px solid #cfe4f8;
  border-radius: 16px;
  background: #f6faff;
  padding: 16px;
  color: var(--muted);
  margin: 20px 0;
}
.review-note strong { color: var(--brand); }
@media (max-width: 820px) { .editorial-proof { grid-template-columns: 1fr; } }

@media (max-width: 820px) {
  .hero-grid, .card-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .section-head { display: block; }
  .article-item { grid-template-columns: 1fr; }
}

/* Accordions / desplegables */
.accordion-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 24px rgba(16,32,39,.05);
  overflow: hidden;
}
.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
  list-style: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 900;
}
.accordion-item[open] summary {
  color: var(--brand);
  border-bottom: 1px solid var(--line);
}
.accordion-item[open] summary::after { content: "−"; }
.accordion-body {
  padding: 0 20px 20px;
  color: var(--muted);
}
.accordion-body p { margin: 14px 0 0; }
.accordion-body ul, .accordion-body ol { margin: 12px 0 0; padding-left: 20px; }
.accordion-body li { margin: 6px 0; }
.requirement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 18px 0;
}
.requirement-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
}
.requirement-card strong { display: block; color: var(--brand); margin-bottom: 6px; }
@media (max-width: 820px) {
  .requirement-grid { grid-template-columns: 1fr; }
}

/* Conversion blocks */
.cta-box {
  margin: 34px 0;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1d5fa7, #3b8eea);
  color: white;
  box-shadow: var(--shadow);
}
.cta-box h2, .cta-box h3 { color: white; }
.cta-box p { color: rgba(255,255,255,.86); }
.cta-box .btn { background: white; color: var(--brand); margin-top: 8px; }
.mini-disclaimer {
  font-size: 14px;
  color: var(--muted);
  background: #eef7ff;
  border: 1px solid #cfe4f8;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 20px 0;
}
.resource-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.resource-status::before { content: "•"; color: var(--accent); font-size: 22px; line-height: 0; }

/* Affiliate/review patterns */
.quick-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.pick-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(16,32,39,.05);
}
.pick-card strong { display: block; color: var(--brand); margin-bottom: 6px; }
.product-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  margin: 22px 0;
}
.product-card h3 { margin-bottom: 8px; }
.product-meta { color: var(--muted); font-size: 14px; }
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.pros-cons div { background: #f6faff; border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.pros-cons ul { margin: 8px 0 0; padding-left: 20px; }
.update-box {
  background: #eaf2fb;
  border: 1px solid #d5e4f5;
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
  margin: 22px 0;
}
@media (max-width: 820px) {
  .quick-picks, .product-card, .pros-cons { grid-template-columns: 1fr; }
}

/* Private test panel */
.test-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  width: min(320px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(15, 61, 76, .18);
  border-radius: 16px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 14px 34px rgba(16, 32, 39, .16);
  backdrop-filter: blur(12px);
  color: var(--ink);
}
.test-panel strong { display: block; margin-bottom: 4px; color: var(--brand); }
.test-panel-status { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.test-panel-actions { display: flex; gap: 8px; }
.test-panel button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--brand);
  cursor: pointer;
  font-weight: 750;
  padding: 8px 12px;
}
.test-panel button:hover { border-color: rgba(20,115,95,.45); }

/* Newsletter / lead capture */
.newsletter-box {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(59, 142, 234, .20);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  box-shadow: 0 12px 34px rgba(59, 142, 234, .10);
}
.newsletter-box h2 { margin-bottom: 12px; }
.newsletter-box p { color: var(--muted); }
.newsletter-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.newsletter-form label { font-weight: 800; color: var(--brand); }
.newsletter-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  background: white;
}
.newsletter-row input:focus { outline: 3px solid rgba(47, 155, 216, .22); border-color: var(--brand-2); }
.form-message { margin: 0; font-size: 14px; color: var(--success); }
@media (max-width: 820px) {
  .newsletter-box, .newsletter-row { grid-template-columns: 1fr; }
  .newsletter-row .btn { width: 100%; }
}

/* Interactive checklist / own assets */
.tool-panel {
  border: 1px solid rgba(59, 142, 234, .22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  padding: 24px;
  box-shadow: var(--shadow);
}
.progress-box {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}
.progress-label { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); font-weight: 750; }
.progress-track { height: 12px; background: #dceafd; border-radius: 999px; overflow: hidden; }
.progress-fill { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: inherit; transition: width .2s ease; }
.checklist-group { display: grid; gap: 12px; margin: 18px 0; }
.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  padding: 14px;
  cursor: pointer;
}
.check-item input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--brand); }
.check-item strong { display: block; color: var(--ink); }
.check-item span { display: block; color: var(--muted); font-size: 15px; margin-top: 2px; }
.check-item:has(input:checked) { border-color: rgba(33,134,111,.35); background: #f2fbf8; }
.result-box {
  border: 1px solid #cfe4f8;
  border-radius: 16px;
  background: #f6faff;
  padding: 16px;
  color: var(--muted);
}
.result-box strong { color: var(--brand); }

/* Interactive discovery */
.explorer-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 22px;
}
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.filter-bar button, .route-select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--brand);
  font: inherit;
  font-weight: 750;
  padding: 0 14px;
  cursor: pointer;
}
.filter-bar button.is-active { background: var(--brand); color: white; border-color: var(--brand); }
.explorer-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  margin: 8px 0 18px;
}
.explorer-search:focus, .route-select:focus { outline: 3px solid rgba(47,155,216,.22); border-color: var(--brand-2); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic-card[hidden] { display: none; }
.topic-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.topic-card:hover { transform: translateY(-2px); border-color: rgba(59,142,234,.45); box-shadow: 0 12px 28px rgba(16,32,39,.08); }
.topic-card p { color: var(--muted); margin-bottom: 0; }
.route-builder { display: grid; gap: 16px; align-items: start; }
.route-output { display: grid; gap: 10px; }
.route-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.route-step span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-soft); color: var(--brand); font-weight: 900; }
.route-step em { color: var(--brand); font-style: normal; font-weight: 800; }
.ad-slot {
  margin: 28px 0;
  padding: 18px;
  border: 1px dashed #a9c8e8;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #eef7ff);
  color: var(--muted);
  text-align: center;
}
.ad-slot strong { display: block; color: var(--brand); margin-bottom: 4px; }
@media (max-width: 820px) {
  .topic-grid { grid-template-columns: 1fr; }
  .route-step { grid-template-columns: 32px 1fr; }
  .route-step em { grid-column: 2; }
}

/* Home readiness / publication polish */
.compact-section { padding-top: 22px; padding-bottom: 36px; }
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(59,142,234,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(29,95,167,.06);
}
.hero-metrics strong { color: var(--brand); }
.trust-mini-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.launch-strip {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(59,142,234,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,247,255,.92)),
    radial-gradient(circle at top right, rgba(113,199,255,.22), transparent 20rem);
  box-shadow: var(--shadow);
}
.launch-strip p { color: var(--muted); margin-bottom: 0; }
.launch-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.launch-checks span {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 12px 14px;
  font-weight: 800;
  color: var(--ink);
}
.launch-checks .is-done::before,
.launch-checks .is-pending::before { margin-right: 8px; }
.launch-checks .is-done::before { content: "✓"; color: var(--success); }
.launch-checks .is-pending::before { content: "•"; color: #d18419; }
.card-link {
  display: block;
  text-decoration: none;
  min-height: 100%;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(59,142,234,.48);
  box-shadow: 0 18px 34px rgba(16,32,39,.09);
}
.card-link strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
}
.final-steps {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 28px;
  align-items: start;
  border-radius: var(--radius);
  border: 1px solid rgba(16,36,63,.10);
  background: linear-gradient(135deg, #10243f, #1d5fa7);
  color: white;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(16,36,63,.18);
}
.final-steps .eyebrow { color: #bfe8ff; }
.final-steps p { color: rgba(255,255,255,.82); }
.steps-list {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.steps-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
}
.steps-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
  color: var(--brand);
  font-weight: 900;
}
.steps-list strong,
.steps-list span { grid-column: 2; }
.steps-list span { color: rgba(255,255,255,.78); margin-top: -4px; }
@media (max-width: 820px) {
  .nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding: 0 0 12px;
    scrollbar-width: thin;
  }
  .header-inner { align-items: flex-start; flex-direction: column; padding-top: 14px; }
  .launch-strip, .final-steps { grid-template-columns: 1fr; }
  .launch-checks { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
}

/* Less text, more scan: compact home library */
.library-hub {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 18px;
  align-items: start;
}
.library-feature {
  display: block;
  position: sticky;
  top: 94px;
  text-decoration: none;
  border: 1px solid rgba(59,142,234,.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  padding: 22px;
  box-shadow: var(--shadow);
}
.library-feature p { color: var(--muted); }
.library-feature strong { color: var(--brand); }
.library-groups { display: grid; gap: 10px; }
.library-group {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  overflow: hidden;
}
.library-group summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.library-group summary::-webkit-details-marker { display: none; }
.library-group summary strong { color: var(--ink); font-size: 18px; }
.library-group summary span {
  flex: 0 0 auto;
  color: var(--brand);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 850;
}
.library-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px 14px;
}
.library-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 12px 13px;
  font-weight: 760;
}
.library-links a span {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}
.library-links a:hover { border-color: rgba(59,142,234,.45); box-shadow: 0 8px 20px rgba(16,32,39,.06); }
.card p,
.topic-card p,
.note > p,
.launch-strip p,
.final-steps p,
.trust-card p,
.library-feature p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero .lead { max-width: 650px; }
@media (max-width: 820px) {
  .library-hub { grid-template-columns: 1fr; }
  .library-feature { position: static; }
  .library-links { grid-template-columns: 1fr; }
}

/* Home: reduce first-screen text weight */
.hero { padding: 52px 0 34px; }
h1 { font-size: clamp(34px, 5.6vw, 62px); }
.lead { font-size: clamp(17px, 1.7vw, 20px); }
.compact-section { padding-top: 10px; }

/* Comparison-first positioning */
.verdict-card h2 { font-size: clamp(26px, 3vw, 36px); }
.winner-box {
  display: grid;
  gap: 4px;
  margin: 18px 0 4px;
  padding: 16px;
  border: 1px solid rgba(59,142,234,.24);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #eef7ff);
}
.winner-box small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.winner-box strong { color: var(--brand); font-size: 22px; line-height: 1.1; }
.winner-box span { color: var(--muted); }
.comparison-promise { border-color: rgba(33,134,111,.22); }
.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.verdict-tile {
  display: grid;
  gap: 10px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.90);
  padding: 20px;
  box-shadow: 0 10px 28px rgba(16,32,39,.055);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.verdict-tile.best { border-color: rgba(33,134,111,.32); background: linear-gradient(135deg, #ffffff, #f2fbf8); }
.verdict-tile:hover { transform: translateY(-3px); border-color: rgba(59,142,234,.48); box-shadow: 0 18px 34px rgba(16,32,39,.09); }
.verdict-tile h3 { font-size: 25px; }
.verdict-tile p { color: var(--muted); margin: 0; }
.verdict-tile ul { margin: 2px 0 0; padding-left: 18px; color: #34464d; }
.verdict-tile li { margin: 4px 0; }
.verdict-tile em { margin-top: 4px; color: var(--brand); font-style: normal; font-weight: 900; }
@media (max-width: 980px) { .verdict-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .verdict-grid { grid-template-columns: 1fr; } }

/* tighten comparison hero */
.hero-grid { gap: 30px; }
.verdict-card .winner-box { margin-top: 14px; }
@media (min-width: 900px) {
  .hero { padding-top: 44px; }
  h1 { font-size: clamp(34px, 5vw, 56px); }
}

/* Visual refresh: más vida sin perder confianza */
:root {
  --bg: #fbf8f1;
  --surface: #ffffff;
  --surface-2: #fff4df;
  --ink: #14213d;
  --muted: #657089;
  --line: #e7dccb;
  --brand: #214f8f;
  --brand-2: #2878d7;
  --accent: #ffb84d;
  --accent-soft: #fff1d6;
  --coral: #ff6f61;
  --mint: #28b487;
  --violet: #7c5cff;
  --shadow: 0 18px 48px rgba(33, 79, 143, .12);
}
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 184, 77, .28) 0, transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(124, 92, 255, .16) 0, transparent 26rem),
    radial-gradient(circle at 70% 35%, rgba(40, 180, 135, .12) 0, transparent 24rem),
    var(--bg);
}
.logo-mark {
  background: linear-gradient(135deg, #214f8f 0%, #2878d7 48%, #ffb84d 100%);
  box-shadow: 0 10px 26px rgba(40,120,215,.24);
}
.site-header {
  background: rgba(251, 248, 241, .88);
  border-bottom-color: rgba(231, 220, 203, .82);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 32px rgba(40,120,215,.24);
}
.btn-primary:hover { background: linear-gradient(135deg, #183d72, #2168bd); }
.btn-secondary {
  background: rgba(255,255,255,.70);
  border-color: rgba(255,184,77,.38);
  color: #8a4d00;
}
.eyebrow { color: #c15f19; }
.tag {
  background: linear-gradient(135deg, #fff1d6, #eaf7ff);
  color: #8a4d00;
}
.trust-card,
.explorer-panel,
.card,
.article-item,
.library-group,
.verdict-tile {
  background: rgba(255,255,255,.88);
  border-color: rgba(231,220,203,.92);
}
.trust-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,244,223,.86)),
    radial-gradient(circle at top right, rgba(255,111,97,.18), transparent 12rem);
}
.winner-box {
  background: linear-gradient(135deg, #fff7e8, #edf8ff);
  border-color: rgba(255,184,77,.40);
}
.hero-metrics span:nth-child(1) { border-color: rgba(40,120,215,.24); }
.hero-metrics span:nth-child(2) { border-color: rgba(40,180,135,.28); }
.hero-metrics span:nth-child(3) { border-color: rgba(255,184,77,.40); }
.launch-strip {
  background:
    linear-gradient(135deg, rgba(255,255,255,.93), rgba(255,244,223,.90)),
    radial-gradient(circle at top right, rgba(255,184,77,.24), transparent 20rem),
    radial-gradient(circle at bottom left, rgba(40,120,215,.12), transparent 18rem);
}
.launch-checks span:nth-child(1)::before { color: var(--brand-2); }
.launch-checks span:nth-child(2)::before { color: var(--mint); }
.launch-checks span:nth-child(3)::before { color: var(--violet); }
.launch-checks span:nth-child(4)::before { color: var(--coral); }
.verdict-tile { position: relative; overflow: hidden; }
.verdict-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
}
.verdict-tile:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--accent)); }
.verdict-tile:nth-child(3)::before { background: linear-gradient(90deg, var(--mint), var(--brand-2)); }
.verdict-tile:nth-child(4)::before { background: linear-gradient(90deg, var(--violet), var(--brand-2)); }
.verdict-tile:nth-child(5)::before { background: linear-gradient(90deg, #00a6a6, var(--mint)); }
.verdict-tile:nth-child(6)::before { background: linear-gradient(90deg, #ef7b45, var(--accent)); }
.verdict-tile.best {
  background: linear-gradient(145deg, #ffffff, #fff7e8);
  border-color: rgba(255,184,77,.46);
}
.verdict-tile:nth-child(2) .tag { background: #fff0ee; color: #ad352a; }
.verdict-tile:nth-child(3) .tag { background: #eafaf4; color: #13765b; }
.verdict-tile:nth-child(4) .tag { background: #f0edff; color: #4f38bd; }
.verdict-tile:nth-child(5) .tag { background: #e8fbfb; color: #007575; }
.verdict-tile:nth-child(6) .tag { background: #fff1df; color: #a34d11; }
.card-link:nth-child(1) { border-top: 5px solid var(--brand-2); }
.card-link:nth-child(2) { border-top: 5px solid var(--coral); }
.card-link:nth-child(3) { border-top: 5px solid var(--violet); }
.card-link:nth-child(4) { border-top: 5px solid #00a6a6; }
.card-link:nth-child(5) { border-top: 5px solid var(--mint); }
.card-link:nth-child(6) { border-top: 5px solid var(--accent); }
.library-feature {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,241,214,.88)),
    radial-gradient(circle at bottom right, rgba(40,120,215,.14), transparent 14rem);
  border-color: rgba(255,184,77,.42);
}
.library-group summary span { background: #fff1d6; color: #9a5a00; }
.final-steps {
  background:
    radial-gradient(circle at top right, rgba(255,184,77,.26), transparent 18rem),
    linear-gradient(135deg, #14213d, #214f8f 58%, #2878d7);
}
.ad-slot {
  border-color: rgba(255,184,77,.70);
  background: linear-gradient(135deg, #fffaf0, #eef7ff);
}

/* readability polish after color refresh */
:root { --muted: #56627a; }
.tag { font-weight: 850; }
.card, .verdict-tile, .library-group, .trust-card { box-shadow: 0 12px 30px rgba(20,33,61,.065); }

/* Link polish: quitar subrayados visuales salvo texto largo editorial */
a { text-decoration: none; }
.prose a,
.accordion-body a,
.legal a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.nav a:hover,
.site-footer a:hover,
.library-links a:hover,
.verdict-tile:hover em,
.card-link:hover strong,
.topic-card:hover h3,
.route-step:hover strong {
  text-decoration: none;
}
.site-footer a { text-decoration: none; color: var(--brand); }

/* Short presentation-style home */
.home-intro { padding-bottom: 26px; }
.intro-strip {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255,184,77,.36);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.intro-strip p { color: var(--muted); margin-bottom: 0; }
.mini-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7e8, #eef7ff);
}
.mini-card strong { display: block; color: var(--brand); font-size: 20px; margin-bottom: 6px; }
.mini-card span { color: var(--muted); }
.chooser-shell {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}
.compact-head { margin-bottom: 18px; }
.chooser-list { display: grid; gap: 12px; }
.chooser-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}
.chooser-item summary {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px 18px;
  cursor: pointer;
  list-style: none;
}
.chooser-item summary::-webkit-details-marker { display: none; }
.chooser-item summary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #9a5a00;
  font-weight: 900;
}
.chooser-item summary strong { font-size: 20px; line-height: 1.1; }
.chooser-item summary em {
  font-style: normal;
  color: var(--brand);
  font-weight: 850;
  background: #eef7ff;
  border-radius: 999px;
  padding: 6px 10px;
}
.chooser-body {
  padding: 0 18px 18px 76px;
  color: var(--muted);
}
.chooser-body p { margin-top: 0; }
.chooser-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chooser-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(40,120,215,.22);
  border-radius: 999px;
  padding: 0 13px;
  background: #f7fbff;
  color: var(--brand);
  font-weight: 850;
}
.chooser-links a:hover { background: var(--brand); color: white; }
.chooser-item:nth-child(2) summary span { background: #fff0ee; color: #ad352a; }
.chooser-item:nth-child(3) summary span { background: #eafaf4; color: #13765b; }
.chooser-item:nth-child(4) summary span { background: #f0edff; color: #4f38bd; }
.chooser-item:nth-child(5) summary span { background: #e8fbfb; color: #007575; }
.chooser-item:nth-child(6) summary span { background: #fff1df; color: #a34d11; }
.final-home-cta { padding-top: 18px; }
.home-final { grid-template-columns: 1fr auto; align-items: center; }
.home-final .hero-actions { margin: 0; justify-content: flex-end; }
@media (max-width: 820px) {
  .intro-strip, .home-final { grid-template-columns: 1fr; }
  .chooser-item summary { grid-template-columns: 38px 1fr; }
  .chooser-item summary em { grid-column: 2; justify-self: start; }
  .chooser-body { padding-left: 18px; }
  .home-final .hero-actions { justify-content: flex-start; }
}

/* Final compacting for short home */
.home-intro { padding-top: 36px; padding-bottom: 18px; }
.home-intro h1 { font-size: clamp(32px, 4.6vw, 52px); }
.home-intro .lead { font-size: clamp(16px, 1.55vw, 19px); }
.verdict-card p { -webkit-line-clamp: unset; }

/* Home upgrade inspired by mature affiliate/editorial sites: proof, quick picks, visible method */
.intro-strip-enhanced {
  grid-template-columns: 1fr .58fr .48fr;
}
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.proof-metrics span {
  display: grid;
  gap: 3px;
  padding: 14px 12px;
  border: 1px solid rgba(40,120,215,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  text-align: center;
}
.proof-metrics strong { color: var(--brand); font-size: 25px; line-height: 1; }
.proof-metrics em { color: var(--muted); font-style: normal; font-size: 13px; font-weight: 750; }
.decision-grid .verdict-tile { min-height: 100%; }
.method-snapshot {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(33,134,111,.20);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(40,180,135,.14), transparent 18rem),
    rgba(255,255,255,.84);
  box-shadow: var(--shadow);
}
.method-snapshot p { color: var(--muted); }
.method-steps {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.method-steps li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.method-steps li::before {
  counter-increment: method;
  content: counter(method);
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #9a5a00;
  font-weight: 900;
}
.method-steps strong { color: var(--ink); }
.method-steps span { color: var(--muted); font-size: 15px; }
.featured-guides { padding-bottom: 4px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.featured-grid a {
  display: grid;
  gap: 9px;
  min-height: 175px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 26px rgba(20,33,61,.055);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.featured-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(40,120,215,.34);
  box-shadow: 0 18px 34px rgba(20,33,61,.09);
}
.featured-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: #eef7ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}
.featured-grid strong { color: var(--ink); font-size: 20px; line-height: 1.12; }
.featured-grid em { margin-top: auto; color: var(--brand); font-style: normal; font-weight: 900; }
@media (max-width: 980px) {
  .intro-strip-enhanced, .method-snapshot { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .proof-metrics, .method-steps, .featured-grid { grid-template-columns: 1fr; }
  .chooser-item summary { grid-template-columns: 38px 1fr; }
  .chooser-item summary em { grid-column: 2; width: fit-content; }
}

/* Tonalidad 2026-05-11: azul noche + cian + lima, guardada la paleta anterior en styles.css.bak-20260511-warm-current */
:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-2: #e8f7f4;
  --ink: #0f1b2d;
  --muted: #536276;
  --line: #dce7ef;
  --brand: #133b5c;
  --brand-2: #0e8fb8;
  --accent: #9bdc28;
  --accent-soft: #eef9d9;
  --coral: #ff8b5f;
  --mint: #13b89a;
  --violet: #6d7cff;
  --shadow: 0 18px 48px rgba(15, 59, 92, .12);
}
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(14, 143, 184, .20) 0, transparent 28rem),
    radial-gradient(circle at 92% 0%, rgba(155, 220, 40, .20) 0, transparent 26rem),
    radial-gradient(circle at 72% 35%, rgba(109, 124, 255, .12) 0, transparent 24rem),
    var(--bg);
}
.logo-mark { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 55%, var(--accent) 100%); }
.site-header { background: rgba(244,248,251,.90); border-bottom-color: rgba(220,231,239,.90); }
.eyebrow { color: #087b7f; }
.tag { background: linear-gradient(135deg, #e7fbff, #eef9d9); color: #09606a; }
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 16px 32px rgba(14,143,184,.22); }
.btn-primary:hover { background: linear-gradient(135deg, #0d2d49, #0a779b); }
.btn-secondary { background: rgba(255,255,255,.76); border-color: rgba(14,143,184,.30); color: var(--brand); }
.trust-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(232,247,244,.90)),
    radial-gradient(circle at top right, rgba(155,220,40,.20), transparent 12rem);
}
.winner-box { background: linear-gradient(135deg, #e7fbff, #f3ffe0); border-color: rgba(14,143,184,.34); }
.final-steps { background: radial-gradient(circle at top right, rgba(155,220,40,.26), transparent 18rem), linear-gradient(135deg, #0f1b2d, #133b5c 58%, #0e8fb8); }

/* Retention and ad preview blocks */
.retention-band {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(14,143,184,.20);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(155,220,40,.16), transparent 20rem),
    rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.retention-band p { color: var(--muted); }
.retention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.retention-grid-home { grid-template-columns: repeat(3, 1fr); }
.retention-card {
  display: grid;
  gap: 9px;
  min-height: 170px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(15,27,45,.055);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.retention-card:hover { transform: translateY(-3px); border-color: rgba(14,143,184,.34); box-shadow: 0 18px 34px rgba(15,27,45,.09); }
.retention-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--accent-soft);
  color: #4d7200;
  font-size: 13px;
  font-weight: 900;
}
.retention-card h2, .retention-card h3 { color: var(--ink); margin: 0; }
.retention-card p { color: var(--muted); margin: 0; }
.retention-card em { margin-top: auto; color: var(--brand-2); font-style: normal; font-weight: 900; }
.glossary-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.glossary-list section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.glossary-list h2 { margin-top: 0; }
.ad-preview-grid, .ad-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 14px;
  align-items: stretch;
}
.ad-showcase { grid-template-columns: 1fr 1fr; }
.mock-ad {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 18px;
  border: 1px dashed rgba(14,143,184,.55);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(231,251,255,.96), rgba(243,255,224,.94)),
    repeating-linear-gradient(45deg, rgba(19,59,92,.035) 0 8px, transparent 8px 16px);
  color: var(--ink);
  overflow: hidden;
}
.mock-ad::after {
  content: "PUBLICIDAD DEMO";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(15,27,45,.45);
  font-weight: 900;
}
.mock-ad span { color: var(--brand-2); font-weight: 950; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.mock-ad strong { font-size: 21px; color: var(--brand); }
.mock-ad p { color: var(--muted); margin: 0; }
.mock-ad em, .mock-ad a { color: var(--brand-2); font-style: normal; font-weight: 900; }
.mock-ad-leaderboard { min-height: 96px; }
.mock-ad-rectangle { min-height: 240px; }
.mock-ad-wide { grid-column: 1 / -1; min-height: 190px; }
.mock-ad-native { background: linear-gradient(135deg, #ffffff, #e8f7f4); border-style: solid; }
@media (max-width: 980px) {
  .retention-band, .ad-preview-grid, .ad-showcase { grid-template-columns: 1fr; }
  .retention-grid-home, .retention-grid, .glossary-list { grid-template-columns: 1fr; }
}

/* Segmentos por tipo de negocio */
.segment-panel {
  padding: 26px;
  border: 1px solid rgba(14,143,184,.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(155,220,40,.16), transparent 20rem),
    rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.segment-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,27,45,.055);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
}
.segment-card:nth-child(2)::before { background: linear-gradient(90deg, var(--mint), var(--brand-2)); }
.segment-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--brand-2)); }
.segment-card:hover { transform: translateY(-3px); border-color: rgba(14,143,184,.36); box-shadow: 0 18px 34px rgba(15,27,45,.10); }
.segment-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--accent-soft);
  color: #4d7200;
  font-weight: 950;
}
.segment-card h3 { margin: 0; font-size: 25px; color: var(--ink); }
.segment-card p { color: var(--muted); margin: 0; }
.segment-card strong { margin-top: auto; color: var(--brand-2); }
.profile-roadmap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}
.profile-roadmap section {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 20px 20px 64px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(15,27,45,.045);
}
.profile-roadmap span {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #4d7200;
  font-weight: 950;
}
.profile-roadmap h2 { margin: 0; }
.profile-roadmap p { margin: 0; color: var(--muted); }
.profile-roadmap a { color: var(--brand-2); font-weight: 900; }
@media (max-width: 900px) {
  .segment-grid, .profile-roadmap { grid-template-columns: 1fr; }
}

/* Excellence iteration: decision hub, quick comparator and editorial trust */
.excellence-hub {
  padding: 28px;
  border: 1px solid rgba(14,143,184,.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(109,124,255,.14), transparent 20rem),
    rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.excellence-grid a {
  display: grid;
  gap: 9px;
  min-height: 190px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 26px rgba(15,27,45,.055);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.excellence-grid a:hover { transform: translateY(-3px); border-color: rgba(14,143,184,.34); box-shadow: 0 18px 34px rgba(15,27,45,.09); }
.excellence-grid span { width: fit-content; border-radius: 999px; padding: 5px 9px; background: #e7fbff; color: var(--brand); font-size: 13px; font-weight: 900; }
.excellence-grid strong { color: var(--ink); font-size: 21px; line-height: 1.12; }
.excellence-grid p { color: var(--muted); margin: 0; }
.excellence-grid em { margin-top: auto; color: var(--brand-2); font-style: normal; font-weight: 900; }
.start-wizard { display: grid; gap: 18px; }
.start-wizard article { padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 10px 26px rgba(15,27,45,.055); }
.start-wizard article > span { display: inline-flex; margin-bottom: 10px; border-radius: 999px; padding: 5px 10px; background: var(--accent-soft); color: #4d7200; font-weight: 900; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.choice-grid a { padding: 14px; border: 1px solid rgba(14,143,184,.22); border-radius: 16px; background: #f7fcff; color: var(--brand); font-weight: 850; text-align: center; }
.choice-grid a:hover { background: var(--brand); color: white; }
.compare-wrap { overflow-x: auto; }
.decision-table td:first-child { font-weight: 900; color: var(--brand); }
.decision-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.decision-strip a { display: grid; gap: 4px; padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: white; }
.decision-strip strong { color: var(--ink); }
.decision-strip span { color: var(--brand-2); font-weight: 900; }
.trust-ledger { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.trust-ledger section { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: white; }
.trust-ledger h2 { margin-top: 0; }
@media (max-width: 980px) { .excellence-grid, .choice-grid, .decision-strip, .trust-ledger { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .excellence-grid, .choice-grid, .decision-strip, .trust-ledger { grid-template-columns: 1fr; } }

/* Polish after visual review */
.choice-grid a,
.decision-strip a,
.excellence-grid a,
.segment-card,
.retention-card {
  text-decoration: none;
}
.choice-grid a:hover,
.decision-strip a:hover,
.excellence-grid a:hover,
.segment-card:hover,
.retention-card:hover {
  text-decoration: none;
}
.chooser-item summary em { white-space: normal; text-align: center; }
.proof-metrics span { min-width: 0; }
@media (max-width: 1120px) {
  .intro-strip-enhanced { grid-template-columns: 1fr; }
}

/* Iteration 2: visible trust, lead magnet and richer category decision blocks */
.trust-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust-proof-strip a {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(14,143,184,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 24px rgba(15,27,45,.045);
}
.trust-proof-strip strong { color: var(--brand); }
.trust-proof-strip span { color: var(--muted); }
.email-card {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(155,220,40,.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(155,220,40,.18), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(231,251,255,.88));
  box-shadow: var(--shadow);
}
.email-card p { color: var(--muted); }
.email-card form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; }
.email-card input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
}
.email-card .form-message { grid-column: 1 / -1; margin: 0; font-size: 14px; }
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.criteria-grid article {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.criteria-grid strong { color: var(--ink); }
.criteria-grid span { color: var(--muted); }
.expanded-trust { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .trust-proof-strip, .email-card, .expanded-trust { grid-template-columns: 1fr; }
  .email-card form { grid-template-columns: 1fr; }
}
@media (max-width: 680px) { .criteria-grid { grid-template-columns: 1fr; } }

/* Iteration 2 visual polish */
.proof-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proof-metrics strong { font-size: clamp(20px, 2vw, 25px); }
.proof-metrics em { font-size: 12px; line-height: 1.2; }
.chooser-links { row-gap: 12px; }
.retention-card h2,
.retention-card h3,
.retention-card p,
.trust-proof-strip a,
.excellence-grid a,
.choice-grid a,
.decision-strip a,
.email-card a,
.criteria-grid a {
  text-decoration: none;
}
.retention-card:hover h2,
.retention-card:hover h3,
.trust-proof-strip a:hover,
.excellence-grid a:hover,
.choice-grid a:hover,
.decision-strip a:hover {
  text-decoration: none;
}
.email-card form { align-items: center; }
.email-card input { min-height: 54px; background: white; }
.email-card .btn { min-height: 54px; }
.article-hero { padding-bottom: 18px; }
.prose .section { padding-top: 24px; padding-bottom: 24px; }
.method-snapshot,
.segment-panel,
.excellence-hub,
.retention-band,
.email-card { margin-top: 4px; }
@media (max-width: 1200px) {
  .proof-metrics { grid-template-columns: 1fr; }
}

/* Money page upgrade */
.money-verdict {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
  margin: 24px 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(14,143,184,.26);
  background:
    radial-gradient(circle at top right, rgba(155,220,40,.18), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(231,251,255,.92));
  box-shadow: var(--shadow);
}
.money-verdict h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 36px); }
.money-verdict p { color: var(--muted); }
.money-verdict aside {
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 31, 61, .94);
  color: white;
}
.money-verdict aside span { display: block; font-weight: 800; margin-bottom: 8px; color: var(--accent); }
.money-verdict aside ul { margin: 0; padding-left: 18px; }
.money-verdict aside li { margin: 7px 0; color: rgba(255,255,255,.86); }
.money-section { padding-top: 10px; }
.money-table td:last-child a { font-weight: 800; text-decoration: none; color: var(--brand-strong); }
@media (max-width: 860px) { .money-verdict { grid-template-columns: 1fr; } }

.btn, .btn:visited, .btn:hover, a.btn, a.btn:hover { text-decoration: none; }
@media (max-width: 640px) {
  .article-hero h1 { font-size: clamp(32px, 10vw, 46px); }
  .money-verdict { padding: 18px; }
  .money-verdict aside { padding: 15px; }
}

/* Individual tool reviews */
.tool-review-page .article-hero { max-width: 980px; }
.tool-verdict { margin-top: 8px; }
.two-col-list,
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.two-col-list article,
.pros-cons-grid article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(15,27,45,.05);
}
.two-col-list h2,
.pros-cons-grid h2 { margin-top: 0; }
.pros-cons-grid article:first-child { border-color: rgba(155,220,40,.45); }
.pros-cons-grid article:last-child { border-color: rgba(14,143,184,.25); }
@media (max-width: 780px) { .two-col-list, .pros-cons-grid { grid-template-columns: 1fr; } }

.tool-review-links { padding-top: 14px; }
.mini-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.mini-tool-card {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(14,143,184,.25);
  border-radius: 16px;
  background: white;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(15,27,45,.045);
}
.mini-tool-card strong { color: var(--ink); }
.mini-tool-card span { color: var(--brand-strong); font-weight: 800; }
.mini-tool-card:hover { transform: translateY(-1px); }

/* Professional product-like home upgrade */
:root {
  --navy: #071b33;
  --navy-2: #0d2b4f;
  --cyan: #42b7ff;
  --mint: #2dd4a6;
  --violet: #7c5cff;
}
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(66,183,255,.18), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(45,212,166,.16), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f6f9fd 100%);
}
.site-header {
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(13,43,79,.10);
  box-shadow: 0 10px 30px rgba(7,27,51,.035);
}
.logo-mark { font-size: 21px; }
.nav a {
  padding: 9px 0;
  font-weight: 760;
}
.nav a:hover { color: var(--navy); }
.pro-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 34px;
}
.pro-hero::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 520px;
  pointer-events: none;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7,27,51,.96), rgba(13,43,79,.94) 52%, rgba(29,95,167,.88)),
    radial-gradient(circle at 75% 20%, rgba(66,183,255,.34), transparent 22rem);
  box-shadow: 0 28px 80px rgba(7,27,51,.22);
  z-index: -1;
}
.pro-hero-grid {
  grid-template-columns: 1.03fr .97fr;
  gap: 42px;
  align-items: stretch;
  min-height: 500px;
}
.pro-hero .eyebrow { color: #8fd7ff; }
.pro-hero h1 {
  color: white;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -.06em;
  max-width: 860px;
}
.pro-hero .lead {
  color: rgba(255,255,255,.76);
  max-width: 760px;
}
.pro-hero .btn-primary {
  background: linear-gradient(135deg, #ffffff, #dff4ff);
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.pro-hero .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}
.pro-hero .btn-secondary:hover { background: rgba(255,255,255,.15); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px 0 34px; }
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}
.hero-trust-row span {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero-trust-row strong { display: block; color: white; font-size: 15px; }
.hero-trust-row em { display: block; margin-top: 2px; color: rgba(255,255,255,.67); font-style: normal; font-size: 13px; }
.decision-console {
  align-self: center;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,247,255,.94));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 30px 90px rgba(4,18,38,.28);
  min-height: 455px;
}
.console-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 16px;
}
.console-topbar span { width: 10px; height: 10px; border-radius: 50%; background: #ff6b6b; }
.console-topbar span:nth-child(2) { background: #ffd166; }
.console-topbar span:nth-child(3) { background: #2dd4a6; }
.console-topbar strong { margin-left: auto; color: var(--brand); font-size: 14px; }
.console-card {
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(66,183,255,.25), transparent 14rem),
    linear-gradient(135deg, #0d2b4f, #1d5fa7);
  color: white;
  box-shadow: 0 18px 44px rgba(29,95,167,.22);
}
.console-card small { color: #9fe1ff; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.console-card h2 { color: white; font-size: clamp(26px, 3vw, 38px); margin-top: 10px; }
.console-card p { color: rgba(255,255,255,.76); margin-bottom: 0; }
.mini-finder {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.mini-finder label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}
.mini-finder select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(29,95,167,.18);
  border-radius: 14px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-weight: 760;
  box-shadow: 0 8px 20px rgba(7,27,51,.04);
}
.finder-result {
  min-height: 118px;
  border: 1px solid rgba(45,212,166,.25);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(135deg, #f6fffb, #f7fbff);
}
.finder-result strong { display: block; color: var(--navy); margin-bottom: 5px; }
.finder-result p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.finder-result a {
  display: inline-flex;
  margin: 5px 6px 0 0;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--brand);
  color: white;
  font-weight: 850;
  font-size: 14px;
}
.trust-proof-strip,
.intro-strip,
.segment-panel,
.chooser-shell,
.method-snapshot,
.featured-grid a,
.retention-band,
.excellence-hub,
.email-card,
.final-steps {
  border-color: rgba(13,43,79,.10) !important;
  box-shadow: 0 18px 50px rgba(7,27,51,.075) !important;
}
.trust-proof-strip {
  margin-top: -8px;
  position: relative;
  z-index: 2;
}
.trust-proof-strip a { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.trust-proof-strip a:hover { transform: translateY(-2px); border-color: rgba(29,95,167,.24); box-shadow: 0 14px 28px rgba(7,27,51,.08); }
.segment-card,
.featured-grid a,
.retention-card,
.excellence-grid a,
.chooser-item {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.chooser-item:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(7,27,51,.07); border-color: rgba(29,95,167,.18); }
.email-card {
  background:
    radial-gradient(circle at right, rgba(66,183,255,.20), transparent 18rem),
    linear-gradient(135deg, #ffffff, #f1f8ff);
}
@media (max-width: 980px) {
  .pro-hero::before { inset: 8px; height: auto; bottom: 0; }
  .pro-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 20px; }
  .decision-console { min-height: auto; }
}
@media (max-width: 820px) {
  .nav { display: flex; overflow-x: auto; width: 100%; padding: 0 0 12px; gap: 14px; }
  .header-inner { flex-wrap: wrap; padding-top: 12px; }
  .hero-trust-row { grid-template-columns: 1fr; }
  .pro-hero h1 { font-size: clamp(34px, 11vw, 48px); }
}

/* Responsive fixes after visual QA */
html, body { max-width: 100%; overflow-x: hidden; }
.header-inner > *, .pro-hero-grid > *, .decision-console, .mini-finder, .finder-result { min-width: 0; }
.pro-hero { padding-bottom: 58px; }
.pro-hero::before { bottom: 22px; height: auto; }
.pro-hero-grid { min-height: 540px; }
.pro-hero h1 { overflow-wrap: anywhere; padding-bottom: 4px; }
.decision-console { width: 100%; max-width: 520px; justify-self: end; }
@media (max-width: 980px) {
  .pro-hero { padding: 28px 0 30px; }
  .pro-hero::before { inset: 0; border-radius: 0 0 28px 28px; }
  .pro-hero-grid { min-height: auto; gap: 22px; }
  .decision-console { max-width: 100%; justify-self: stretch; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { position: static; }
  .header-inner { display: grid; grid-template-columns: 1fr; gap: 8px; min-height: auto; }
  .nav { display: flex; max-width: 100%; overflow-x: auto; white-space: nowrap; padding: 0 0 10px; scrollbar-width: thin; }
  .nav a { flex: 0 0 auto; }
  .hero-copy { padding: 8px 0 0; }
  .pro-hero h1 { font-size: clamp(31px, 10vw, 44px); letter-spacing: -.045em; }
  .pro-hero .lead { font-size: 16px; }
  .pro-hero .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .pro-hero .btn { width: 100%; }
  .hero-trust-row { margin-top: 22px; gap: 9px; }
  .decision-console { border-radius: 22px; padding: 14px; }
  .console-card { padding: 18px; }
  .console-card h2 { font-size: 26px; }
  .finder-result a { width: 100%; justify-content: center; margin-right: 0; }
}

/* Mobile hardening: no horizontal page overflow, no clipped hero */
@media (max-width: 820px) {
  body { width: 100%; }
  .container,
  .pro-hero .container,
  .header-inner {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
  }
  .site-header { overflow: hidden; }
  .nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    white-space: normal;
    gap: 8px;
    padding-bottom: 6px;
  }
  .nav a {
    min-width: 0;
    text-align: center;
    font-size: 13px;
    padding: 8px 6px;
    border: 1px solid rgba(13,43,79,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.64);
  }
  .pro-hero,
  .pro-hero-grid,
  .hero-copy,
  .decision-console,
  .console-card,
  .mini-finder,
  .finder-result,
  .hero-trust-row,
  .trust-proof-strip,
  .intro-strip,
  .segment-panel,
  .chooser-shell,
  .method-snapshot,
  .retention-band,
  .excellence-hub,
  .email-card,
  .final-steps {
    max-width: 100%;
    overflow: hidden;
  }
  .pro-hero h1,
  .pro-hero .lead,
  .console-card h2,
  .console-card p,
  .finder-result,
  .finder-result * {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .pro-hero::before { left: 0; right: 0; }
}

/* Mobile readability final pass: prioritize clean wrapping over dramatic scale */
@media (max-width: 820px) {
  .hero-copy,
  .console-card,
  .finder-result { overflow: visible; }
  .pro-hero h1 {
    max-width: 94%;
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.08;
    letter-spacing: -.035em;
    word-break: break-word;
  }
  .pro-hero .lead { max-width: 94%; }
  .nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav a { font-size: 12.5px; }
  .decision-console { margin-top: 6px; }
}
@media (max-width: 430px) {
  .pro-hero h1,
  .pro-hero .lead { max-width: 330px; }
  .console-card h2 { font-size: 23px; }
}

.mobile-nav-cta { display: none; }
@media (max-width: 820px) {
  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 850;
    justify-self: end;
  }
  .header-inner { grid-template-columns: 1fr auto; align-items: center; }
  .nav { display: none !important; }
  .logo { min-width: 0; }
  .pro-hero h1,
  .pro-hero .lead { max-width: 100%; }
  .hero-trust-row { grid-template-columns: 1fr; }
  .hero-trust-row span { padding: 11px 12px; }
  .decision-console { margin-top: 0; }
}

/* Premium money pages: executive summary + conversion polish */
.money-article-hero {
  position: relative;
  margin: 28px 0 18px;
  padding: 46px 34px 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.60);
  background:
    radial-gradient(circle at 82% 12%, rgba(66,183,255,.30), transparent 20rem),
    radial-gradient(circle at 12% 0%, rgba(45,212,166,.22), transparent 18rem),
    linear-gradient(135deg, #071b33, #0d2b4f 54%, #1d5fa7);
  color: white;
  box-shadow: 0 26px 70px rgba(7,27,51,.20);
  overflow: hidden;
}
.money-article-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,.08);
}
.money-article-hero .eyebrow { color: #8fd7ff; }
.money-article-hero h1 {
  color: white;
  max-width: 980px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -.055em;
}
.money-article-hero .article-meta {
  color: rgba(255,255,255,.72);
  margin-bottom: 0;
  font-weight: 740;
}
.money-command-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 18px;
  align-items: stretch;
  margin: 22px 0 30px;
}
.money-command-main,
.money-command-side {
  border: 1px solid rgba(13,43,79,.10);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(7,27,51,.075);
}
.money-command-main {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(45,212,166,.16), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f2f9ff);
}
.money-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e7f7ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.money-command-main h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: -.045em;
  margin: 0;
  max-width: 880px;
}
.money-command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.money-command-side {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,.92);
}
.money-command-side div {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcff, #ffffff);
  border: 1px solid rgba(29,95,167,.10);
}
.money-command-side strong {
  display: block;
  color: var(--navy);
  margin-bottom: 7px;
  font-size: 15px;
}
.money-command-side p {
  margin: 0;
  color: var(--muted);
}
.money-page-shell {
  border-radius: 28px;
}
.money-verdict {
  border-color: rgba(13,43,79,.12);
  background:
    radial-gradient(circle at top right, rgba(66,183,255,.16), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(242,249,255,.94));
  box-shadow: 0 18px 50px rgba(7,27,51,.075);
}
.money-section {
  border: 1px solid rgba(13,43,79,.08);
  border-radius: 24px;
  padding: 24px !important;
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 38px rgba(7,27,51,.055);
  margin: 26px 0;
}
.money-section h2 { margin-top: 0; }
.compare-wrap {
  border-radius: 18px;
  border: 1px solid rgba(13,43,79,.08);
  overflow: hidden;
  background: white;
}
.money-table th {
  background: #0d2b4f;
  color: white;
}
.money-table td { background: rgba(255,255,255,.98); }
.money-table tr:nth-child(even) td { background: #f7fbff; }
.prose > .callout:first-of-type {
  border-left: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef9ff, #ffffff);
  border: 1px solid rgba(29,95,167,.12);
  box-shadow: 0 10px 28px rgba(7,27,51,.05);
}
.article-page .cta-box {
  background:
    radial-gradient(circle at top right, rgba(66,183,255,.24), transparent 18rem),
    linear-gradient(135deg, #071b33, #1d5fa7);
  box-shadow: 0 22px 54px rgba(7,27,51,.18);
}
@media (max-width: 900px) {
  .money-command-panel { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .money-article-hero {
    margin-top: 18px;
    padding: 28px 20px 24px;
    border-radius: 24px;
  }
  .money-article-hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .money-command-main, .money-command-side { border-radius: 22px; }
  .money-command-main { padding: 20px; }
  .money-command-actions { display: grid; grid-template-columns: 1fr; }
  .money-command-actions .btn { width: 100%; }
  .money-section { padding: 18px !important; }
}

/* Money mobile hardening after visual QA */
@media (max-width: 640px) {
  .article-page main.container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: visible;
  }
  .money-article-hero,
  .money-command-panel,
  .money-command-main,
  .money-command-side,
  .money-command-side div,
  .money-verdict,
  .money-section,
  .prose,
  .editorial-proof,
  .cta-box {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .money-article-hero { overflow: visible; }
  .money-article-hero h1 {
    max-width: 100%;
    font-size: clamp(27px, 7.6vw, 34px);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .money-article-hero .article-meta {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .money-command-main h2 {
    font-size: clamp(23px, 6.5vw, 30px);
    overflow-wrap: break-word;
  }
  .money-command-side p,
  .money-verdict p,
  .prose p,
  .prose li { overflow-wrap: break-word; }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .money-table { min-width: 560px; }
}

/* Practical editorial depth for money pages */
.money-reality-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin: 30px 0;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(13,43,79,.10);
  background:
    radial-gradient(circle at top left, rgba(45,212,166,.14), transparent 17rem),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 42px rgba(7,27,51,.06);
}
.money-reality-copy h2 { margin-top: 0; }
.money-reality-copy p:last-child { margin-bottom: 0; }
.money-check-card {
  padding: 20px;
  border-radius: 20px;
  background: #071b33;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.money-check-card strong { display: block; margin-bottom: 10px; color: #8fd7ff; }
.money-check-card ul { margin: 0; padding-left: 20px; }
.money-check-card li { color: rgba(255,255,255,.86); margin: 8px 0; }
.money-faq-block {
  margin: 30px 0;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(13,43,79,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 42px rgba(7,27,51,.055);
}
.money-faq-item {
  border: 1px solid rgba(29,95,167,.12);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  margin-top: 10px;
}
.money-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 900;
  color: var(--navy);
}
.money-faq-item summary::-webkit-details-marker { display: none; }
.money-faq-item summary::after { content: "+"; float: right; color: var(--brand); font-weight: 950; }
.money-faq-item[open] summary::after { content: "−"; }
.money-faq-item p { margin: 0; padding: 0 18px 18px; color: var(--muted); }
@media (max-width: 820px) {
  .money-reality-block { grid-template-columns: 1fr; padding: 18px; }
  .money-faq-block { padding: 18px; }
}

/* =====================================================================
   Luxury polish — 2026-05-14
   Capa final: refinamiento tipográfico, hero más elegante, microanimaciones
   suaves y sombras de mayor profundidad. Solo añade — no toca el cascado
   previo.
   ===================================================================== */

/* Sistema tipográfico afinado */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
body { font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1; }
h1, h2, h3, .console-card h2, .money-article-hero h1 {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1, "ss02" 1;
  font-variation-settings: "opsz" 32;
}
h1 { letter-spacing: -.055em; }
h2 { letter-spacing: -.04em; }
.eyebrow { font-feature-settings: "tnum" 1, "ss01" 1; }

/* Hero: marco redondeado más limpio, profundidad sutil con estrellas finas */
.pro-hero { padding: 64px 0 56px; }
.pro-hero::before {
  inset: 12px 12px 12px;
  height: auto;
  border-radius: 38px;
  background:
    radial-gradient(circle at 78% 18%, rgba(66,183,255,.38), transparent 24rem),
    radial-gradient(circle at 22% 88%, rgba(45,212,166,.22), transparent 20rem),
    linear-gradient(135deg, #050f22 0%, #0b2548 48%, #14467f 100%);
  box-shadow:
    0 38px 96px rgba(7,27,51,.28),
    inset 0 1px 0 rgba(255,255,255,.10);
}
.pro-hero::after {
  content: "";
  position: absolute;
  inset: 12px 12px 12px;
  pointer-events: none;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,.10) 0, transparent 1px),
    radial-gradient(circle at 28% 62%, rgba(255,255,255,.06) 0, transparent 1px),
    radial-gradient(circle at 64% 30%, rgba(255,255,255,.08) 0, transparent 1px),
    radial-gradient(circle at 82% 70%, rgba(255,255,255,.05) 0, transparent 1px),
    radial-gradient(circle at 46% 14%, rgba(255,255,255,.07) 0, transparent 1px);
  background-size: 220px 220px;
  background-repeat: repeat;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 92%);
  opacity: .55;
  z-index: -1;
}
.pro-hero-grid { min-height: 520px; }
.hero-copy { padding: 36px 4px 36px 8px; }

.pro-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aee4ff;
  font-size: 12px;
  letter-spacing: .18em;
}
.pro-hero .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(174,228,255,.85));
}

.pro-hero h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -.058em;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(7,27,51,.45);
}
.pro-hero .lead {
  margin-top: 22px;
  color: rgba(231,244,255,.78);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 580px;
  text-wrap: pretty;
}
.pro-hero .hero-actions { margin-top: 30px; gap: 12px; }
.pro-hero .btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
  letter-spacing: -.005em;
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s ease, background .22s ease;
}
.pro-hero .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e6f4ff 100%);
  color: #0b2548;
  box-shadow:
    0 14px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(7,27,51,.05);
}
.pro-hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.pro-hero .btn-secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pro-hero .btn-secondary:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
}

/* Trust row del hero: separadores finos en lugar de "pills" */
.hero-trust-row {
  margin-top: 42px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 22px;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}
.hero-trust-row span {
  background: transparent;
  border: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(255,255,255,.10);
  backdrop-filter: none;
  color: rgba(231,244,255,.78);
}
.hero-trust-row span:first-child { border-left: 0; padding-left: 0; }
.hero-trust-row strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: -.01em;
  color: #ffffff;
}
.hero-trust-row strong::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4a6, #42b7ff);
  box-shadow: 0 0 0 3px rgba(45,212,166,.18);
}
.hero-trust-row em {
  margin-top: 6px;
  color: rgba(231,244,255,.58);
  font-size: 12.5px;
  letter-spacing: .005em;
}

/* Console card (Finder): cristal con profundidad multinivel */
.decision-console {
  border-radius: 30px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(244,250,255,.96) 100%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 40px 100px rgba(4,18,38,.32),
    0 8px 24px rgba(4,18,38,.16);
}
.console-topbar { padding: 4px 6px 0; }
.console-topbar span { width: 11px; height: 11px; box-shadow: inset 0 -1px 0 rgba(0,0,0,.10); }
.console-topbar strong { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; font-weight: 900; }
.console-card {
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 12%, rgba(66,183,255,.30), transparent 14rem),
    radial-gradient(circle at 18% 88%, rgba(45,212,166,.18), transparent 12rem),
    linear-gradient(135deg, #0b2548 0%, #14467f 60%, #1f5fae 100%);
  box-shadow:
    0 20px 48px rgba(11,37,72,.32),
    inset 0 1px 0 rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}
.console-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.10), transparent 60%);
  pointer-events: none;
}
.console-card small { font-size: 11px; letter-spacing: .14em; color: #aee4ff; }
.console-card h2 { font-size: clamp(24px, 2.4vw, 30px); margin-top: 12px; letter-spacing: -.035em; line-height: 1.12; }
.console-card p { color: rgba(231,244,255,.78); font-size: 14.5px; }

.mini-finder { margin-top: 18px; gap: 12px; padding: 0 2px; }
.mini-finder label { font-size: 12.5px; letter-spacing: .02em; color: #56627a; text-transform: uppercase; font-weight: 900; }
.mini-finder select {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(13,43,79,.10);
  background:
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 8px 20px rgba(7,27,51,.05);
  font-weight: 780;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.mini-finder select:focus {
  outline: 3px solid rgba(66,183,255,.22);
  border-color: rgba(29,95,167,.45);
}
.finder-result {
  border-radius: 18px;
  background:
    linear-gradient(135deg, #f4fffb, #f5fbff);
  border: 1px solid rgba(45,212,166,.22);
  box-shadow: 0 8px 20px rgba(7,27,51,.04) inset;
}
.finder-result a {
  background: linear-gradient(135deg, #0b2548, #1f5fae);
  box-shadow: 0 8px 18px rgba(11,37,72,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.finder-result a:hover { transform: translateY(-1px); box-shadow: 0 12px 22px rgba(11,37,72,.26); }

/* Header refinado: línea sutil, logo más limpio */
.site-header {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(13,43,79,.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 12px 32px rgba(7,27,51,.04);
}
.logo { font-size: 18px; letter-spacing: -.025em; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, #071b33 0%, #14467f 55%, #42b7ff 100%);
  box-shadow:
    0 8px 22px rgba(11,37,72,.30),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.10);
}
.nav { gap: 26px; font-size: 14.5px; font-weight: 660; }
.nav a {
  position: relative;
  color: #4a5670;
  transition: color .18s ease;
}
.nav a:hover { color: #0b2548; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, #42b7ff, #2dd4a6);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.22,.61,.36,1);
}
.nav a:hover::after { transform: scaleX(1); }

/* Suavizar la animación de entrada del hero */
@media (prefers-reduced-motion: no-preference) {
  .pro-hero .eyebrow,
  .pro-hero h1,
  .pro-hero .lead,
  .pro-hero .hero-actions,
  .hero-trust-row,
  .decision-console {
    animation: heroIn .7s cubic-bezier(.22,.61,.36,1) both;
  }
  .pro-hero h1 { animation-delay: .06s; }
  .pro-hero .lead { animation-delay: .12s; }
  .pro-hero .hero-actions { animation-delay: .18s; }
  .hero-trust-row { animation-delay: .24s; }
  .decision-console { animation-delay: .10s; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .pro-hero { padding: 40px 0 44px; overflow: hidden; }
  .pro-hero::before, .pro-hero::after { inset: 0; height: auto; bottom: 0; left: 0; right: 0; border-radius: 0 0 32px 32px; }
  .hero-copy { padding: 20px 0 0; }
  .decision-console { margin-top: 8px; max-width: 100%; }
}
@media (max-width: 820px) {
  .pro-hero h1 {
    font-size: clamp(26px, 6.8vw, 34px);
    letter-spacing: -.025em;
    line-height: 1.1;
    text-wrap: pretty;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .pro-hero .lead { font-size: 15.5px; line-height: 1.55; max-width: 100%; }
  .pro-hero .hero-actions { gap: 10px; }
  .hero-trust-row {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 18px;
    gap: 14px;
    margin-top: 30px;
  }
  .hero-trust-row span {
    border-left: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .hero-trust-row span:first-child { border-top: 0; padding-top: 0; }
  .decision-console { padding: 12px; border-radius: 22px; }
  .console-card { padding: 22px; }
  .console-card h2 { font-size: 22px; }
}
@media (max-width: 430px) {
  .pro-hero h1 { font-size: clamp(26px, 7.4vw, 30px); }
  .pro-hero .lead { font-size: 14.5px; }
}

/* --- Tanda 2: secciones interiores --- */

/* Section heads: mejor jerarquía y respiración */
.section-head .eyebrow,
.intro-strip-enhanced .eyebrow,
.section-head + p { letter-spacing: .14em; }
.section { padding: 70px 0; }
.compact-section { padding: 18px 0 34px; }
h2 { line-height: 1.07; }
.section-head h2 { max-width: 22ch; text-wrap: balance; }
.compact-head h2 { max-width: none; }

/* Trust proof strip (3 mini-cards bajo el hero) — más elegante, con flecha */
.trust-proof-strip {
  gap: 14px;
  margin-top: -16px;
  position: relative;
  z-index: 3;
}
.trust-proof-strip a {
  padding: 18px 20px;
  border: 1px solid rgba(13,43,79,.08) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 18px 44px rgba(7,27,51,.06) !important;
  position: relative;
  overflow: hidden;
}
.trust-proof-strip a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #42b7ff, #2dd4a6);
  border-radius: 999px;
  transform: scaleY(.4);
  transform-origin: top;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.trust-proof-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(29,95,167,.18) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 24px 56px rgba(7,27,51,.10) !important;
}
.trust-proof-strip a:hover::before { transform: scaleY(1); }
.trust-proof-strip strong {
  font-size: 16px;
  letter-spacing: -.01em;
  color: #0b2548;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-proof-strip strong::after {
  content: "→";
  color: #42b7ff;
  font-weight: 900;
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
}
.trust-proof-strip a:hover strong::after { transform: translateX(4px); }
.trust-proof-strip span {
  font-size: 13.5px;
  line-height: 1.5;
  color: #56627a;
}

/* Intro strip enhanced — el bloque "Porque la clave..." */
.intro-strip-enhanced {
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 95% 0%, rgba(66,183,255,.10), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 22px 56px rgba(7,27,51,.07) !important;
}
.intro-strip-enhanced h2 { font-size: clamp(26px, 3vw, 38px); max-width: 18ch; }
.intro-strip-enhanced p { color: #56627a; max-width: 56ch; }
.proof-metrics { gap: 12px; }
.proof-metrics span {
  padding: 18px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(29,95,167,.10) !important;
  box-shadow: 0 8px 20px rgba(7,27,51,.04);
}
.proof-metrics strong {
  background: linear-gradient(135deg, #0b2548, #1f5fae 60%, #42b7ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
}
.proof-metrics em { font-size: 12.5px; letter-spacing: .01em; color: #56627a; }
.mini-card {
  padding: 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(45,212,166,.16), transparent 14rem),
    linear-gradient(180deg, #ffffff, #f4fffb);
  border: 1px solid rgba(45,212,166,.22);
  box-shadow: 0 14px 32px rgba(7,27,51,.06);
}
.mini-card strong {
  color: #0b2548;
  font-size: 17px;
  letter-spacing: -.015em;
}
.mini-card span { color: #56627a; font-size: 14.5px; }

/* Segment cards (autónomo / pequeña / mediana) */
.segment-panel {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(66,183,255,.10), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f7fbff) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.segment-card {
  border-radius: 24px;
  border: 1px solid rgba(13,43,79,.08);
  background:
    linear-gradient(180deg, #ffffff, #fbfdff);
  padding: 26px;
  min-height: 240px;
  box-shadow: 0 14px 36px rgba(7,27,51,.055);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .2s ease;
}
.segment-card::before {
  height: 4px;
  border-radius: 4px 4px 0 0;
}
.segment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,95,167,.22);
  box-shadow: 0 28px 56px rgba(7,27,51,.12);
}
.segment-card span {
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.06);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
}
.segment-card h3 { font-size: 23px; color: #0b2548; letter-spacing: -.02em; }
.segment-card p { color: #56627a; font-size: 14.5px; line-height: 1.55; }
.segment-card strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f5fae;
  font-weight: 900;
  font-size: 14.5px;
}
.segment-card strong::after { content: ""; }

/* Chooser shell (acordeón "Abre una ruta...") */
.chooser-shell {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff, #fafcff) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.chooser-item {
  border: 1px solid rgba(13,43,79,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 8px 22px rgba(7,27,51,.04);
}
.chooser-item:hover {
  border-color: rgba(29,95,167,.18);
  box-shadow: 0 16px 34px rgba(7,27,51,.08);
}
.chooser-item[open] {
  border-color: rgba(29,95,167,.22);
  box-shadow: 0 20px 42px rgba(7,27,51,.10);
}
.chooser-item summary {
  padding: 20px 22px;
  grid-template-columns: 46px 1fr auto;
}
.chooser-item summary strong {
  font-size: 17px;
  letter-spacing: -.01em;
  color: #0b2548;
}
.chooser-item summary span {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.08);
  box-shadow: 0 4px 10px rgba(7,27,51,.04);
}
.chooser-item summary em {
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(13,43,79,.06);
  color: #0b2548;
}
.chooser-links a {
  border: 1px solid rgba(13,43,79,.10);
  background: #ffffff;
  color: #1f5fae;
  font-weight: 800;
  padding: 0 16px;
  min-height: 42px;
  transition: all .2s ease;
}
.chooser-links a:hover {
  background: linear-gradient(135deg, #0b2548, #1f5fae);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(11,37,72,.22);
}

/* Verdict tiles (Mejor primer paso...) */
.verdict-tile {
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13,43,79,.08);
  padding: 26px;
  box-shadow: 0 14px 36px rgba(7,27,51,.055);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease;
}
.verdict-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(7,27,51,.12);
  border-color: rgba(29,95,167,.22);
}
.verdict-tile::before { height: 4px; }
.verdict-tile.best {
  background:
    radial-gradient(circle at top right, rgba(45,212,166,.14), transparent 14rem),
    linear-gradient(180deg, #ffffff, #f4fffb);
  border-color: rgba(45,212,166,.32);
}
.verdict-tile .tag {
  padding: 7px 12px;
  font-size: 12.5px;
  letter-spacing: .04em;
  font-weight: 950;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.08);
}
.verdict-tile h3 { font-size: 22px; color: #0b2548; letter-spacing: -.02em; }
.verdict-tile p { color: #56627a; font-size: 14.5px; line-height: 1.5; }
.verdict-tile ul { color: #56627a; font-size: 14px; }
.verdict-tile em { color: #1f5fae; font-weight: 900; font-size: 14.5px; }

/* Method snapshot (cómo decidimos) */
.method-snapshot {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(45,212,166,.12), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f4fffb) !important;
  border: 1px solid rgba(45,212,166,.22) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.method-snapshot h2 { color: #0b2548; }
.method-snapshot p { color: #56627a; }
.method-steps li {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13,43,79,.08);
  border-radius: 18px;
  padding: 22px 22px 22px 64px;
  box-shadow: 0 8px 20px rgba(7,27,51,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.method-steps li:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7,27,51,.08);
}
.method-steps li::before {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #0b2548, #1f5fae);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(11,37,72,.22);
}
.method-steps strong { color: #0b2548; font-size: 16px; letter-spacing: -.01em; }
.method-steps span { color: #56627a; font-size: 14.5px; }

/* Featured grid (guías destacadas) */
.featured-grid a {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 14px 32px rgba(7,27,51,.05) !important;
  min-height: 185px;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .2s ease;
}
.featured-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(7,27,51,.10) !important;
  border-color: rgba(29,95,167,.22) !important;
}
.featured-grid span {
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.06);
  padding: 6px 10px;
  font-size: 12.5px;
  letter-spacing: .04em;
}
.featured-grid strong { font-size: 18px; color: #0b2548; letter-spacing: -.015em; }
.featured-grid em { color: #1f5fae; font-weight: 900; font-size: 14px; }

/* Retention band + cards */
.retention-band {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(124,92,255,.10), transparent 20rem),
    linear-gradient(180deg, #ffffff, #fafcff) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.retention-band h2 { color: #0b2548; }
.retention-card {
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13,43,79,.08);
  padding: 22px;
  min-height: 180px;
  box-shadow: 0 14px 32px rgba(7,27,51,.05);
}
.retention-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29,95,167,.22);
  box-shadow: 0 24px 48px rgba(7,27,51,.10);
}
.retention-card span {
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.06);
  padding: 6px 10px;
  font-size: 12.5px;
  letter-spacing: .04em;
}
.retention-card h3 { color: #0b2548; font-size: 19px; letter-spacing: -.015em; }
.retention-card p { color: #56627a; font-size: 14.5px; }
.retention-card em { color: #1f5fae; font-weight: 900; }

/* Excellence hub */
.excellence-hub {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0%, rgba(66,183,255,.12), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f7fbff) !important;
  border: 1px solid rgba(13,43,79,.08) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.excellence-grid a {
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(13,43,79,.08);
  padding: 22px;
  min-height: 195px;
  box-shadow: 0 14px 32px rgba(7,27,51,.05);
}
.excellence-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(29,95,167,.22);
  box-shadow: 0 24px 48px rgba(7,27,51,.10);
}
.excellence-grid span {
  background: linear-gradient(135deg, #e7f4ff, #f4fffb);
  color: #0b2548;
  border: 1px solid rgba(13,43,79,.06);
  padding: 6px 10px;
  font-size: 12.5px;
}
.excellence-grid strong { color: #0b2548; font-size: 19px; letter-spacing: -.015em; }
.excellence-grid p { color: #56627a; font-size: 14.5px; }
.excellence-grid em { color: #1f5fae; font-weight: 900; }

/* Email card */
.email-card {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 50%, rgba(45,212,166,.18), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f4fffb) !important;
  border: 1px solid rgba(45,212,166,.26) !important;
  box-shadow: 0 24px 60px rgba(7,27,51,.07) !important;
}
.email-card h2 { color: #0b2548; }
.email-card p { color: #56627a; }
.email-card input {
  background: #ffffff;
  border: 1px solid rgba(13,43,79,.10);
  box-shadow: 0 8px 18px rgba(7,27,51,.04) inset;
  font-weight: 700;
}
.email-card input:focus {
  outline: 3px solid rgba(66,183,255,.22);
  border-color: rgba(29,95,167,.45);
}
.email-card .btn-primary {
  background: linear-gradient(135deg, #0b2548, #1f5fae);
  color: white;
  box-shadow: 0 14px 28px rgba(11,37,72,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.email-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(11,37,72,.28);
}

/* Final CTA section */
.final-steps {
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(66,183,255,.32), transparent 22rem),
    radial-gradient(circle at 10% 88%, rgba(45,212,166,.22), transparent 18rem),
    linear-gradient(135deg, #050f22 0%, #0b2548 52%, #14467f 100%) !important;
  box-shadow:
    0 38px 80px rgba(7,27,51,.26),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}
.final-steps h2 {
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.04em;
}
.final-steps .eyebrow { color: #aee4ff; }
.final-steps p { color: rgba(231,244,255,.78); }
.final-steps .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e6f4ff 100%);
  color: #0b2548;
  box-shadow:
    0 14px 28px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.final-steps .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 40px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.final-steps .btn-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.final-steps .btn-secondary:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.36);
}

/* Footer refinado */
.site-footer {
  padding: 56px 0 44px;
  border-top: 1px solid rgba(13,43,79,.06);
  background: linear-gradient(180deg, transparent, rgba(247,251,255,.6));
  color: #56627a;
  font-size: 14px;
}
.site-footer a { color: #4a5670; transition: color .18s ease; }
.site-footer a:hover { color: #0b2548; }
.footer-inner { align-items: center; }

/* Ajustes Ayub 2026-05-14: menos maqueta IA, más empresa real y móvil limpio */
.trust-principles strong {
  -webkit-text-fill-color: initial;
  background: none;
  color: #0b2548;
  font-size: clamp(18px, 2.1vw, 23px);
  letter-spacing: -.02em;
}
.trust-principles em { max-width: 18ch; margin: 6px auto 0; display: block; }
.reveal-panel {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(13,43,79,.08);
  box-shadow: 0 24px 60px rgba(7,27,51,.07);
}
.reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.reveal-card {
  border: 1px solid rgba(13,43,79,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 12px 30px rgba(7,27,51,.05);
  overflow: hidden;
}
.reveal-card summary {
  min-height: 178px;
  cursor: pointer;
  list-style: none;
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}
.reveal-card summary::-webkit-details-marker { display: none; }
.reveal-card summary span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f4ff;
  color: #0b2548;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
}
.reveal-card summary strong {
  color: #0b2548;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.reveal-card summary em {
  color: #1f5fae;
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
}
.reveal-card summary em::after { content: " +"; }
.reveal-card[open] summary em::after { content: " −"; }
.reveal-card p {
  margin: 0;
  padding: 0 22px 22px;
  color: #56627a;
  font-size: 14.5px;
  line-height: 1.58;
}
.reveal-card[open] { border-color: rgba(29,95,167,.22); box-shadow: 0 20px 42px rgba(7,27,51,.10); }

@media (max-width: 820px) {
  .site-header { overflow: visible !important; }
  .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) max-content !important;
    gap: 12px !important;
  }
  .mobile-nav-cta {
    justify-self: end !important;
    max-width: 132px;
    white-space: nowrap;
    padding: 0 16px !important;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(11,37,72,.18);
  }
  .logo { overflow: hidden; }
  .pro-hero {
    padding: 28px 0 34px !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  .pro-hero::before,
  .pro-hero::after {
    inset: 0 !important;
    border-radius: 0 0 30px 30px !important;
  }
  .pro-hero-grid {
    min-height: auto !important;
    display: grid;
    gap: 24px;
  }
  .hero-copy { padding: 10px 0 0 !important; }
  .pro-hero h1 {
    color: #ffffff !important;
    opacity: 1 !important;
    max-width: 100% !important;
    font-size: clamp(32px, 9.2vw, 42px) !important;
    line-height: 1.05 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.35);
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .pro-hero .eyebrow,
  .pro-hero .lead,
  .pro-hero .hero-actions,
  .hero-trust-row,
  .decision-console { opacity: 1 !important; }
  .pro-hero .lead {
    color: rgba(231,244,255,.88) !important;
    max-width: 100% !important;
  }
  .hero-trust-row span { padding-left: 0 !important; }
  .reveal-panel { padding: 22px; border-radius: 24px; }
  .reveal-grid { grid-template-columns: 1fr; }
  .reveal-card summary { min-height: auto; }
}

/* Corrección final móvil: evitar cualquier desborde horizontal visible */
@media (max-width: 820px) {
  html, body { max-width: 100%; overflow-x: hidden !important; }
  .site-header .container.header-inner {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .mobile-nav-cta {
    width: auto !important;
    max-width: none !important;
    min-width: 104px !important;
    transform: none !important;
  }
  .pro-hero h1 {
    font-size: clamp(29px, 8vw, 34px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    text-wrap: wrap !important;
  }
  .pro-hero .lead {
    font-size: 15.5px !important;
    overflow-wrap: anywhere !important;
    text-wrap: wrap !important;
  }
}
@media (max-width: 430px) {
  .pro-hero h1 { font-size: clamp(28px, 7.6vw, 32px) !important; }
}

/* Pulido web real 2026-05-14: recursos sin formularios falsos y notas compactas */
.resource-card-clean .hero-actions,
.stacked-actions {
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.compact-note {
  margin: 1.25rem 0;
}
.compact-note ul {
  margin-bottom: 0;
}
@media (max-width: 680px) {
  .resource-card-clean .hero-actions,
  .stacked-actions {
    width: 100%;
  }
  .resource-card-clean .btn,
  .stacked-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Selección editorial de afiliados */
.affiliate-hero { padding-bottom: 34px; }
.affiliate-status-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.affiliate-preview-band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(237,248,255,.92));
  box-shadow: var(--shadow);
}
.affiliate-preview-band p { color: var(--muted); margin: 10px 0 0; max-width: 760px; }
.affiliate-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.affiliate-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16,32,39,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.affiliate-card.priority-high { border-color: rgba(59,142,234,.32); }
.affiliate-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; }
.affiliate-card h3 { font-size: clamp(28px, 3vw, 38px); }
.affiliate-card p { color: var(--muted); margin: 0; }
.fit-list { display: grid; gap: 10px; }
.fit-list span { display: block; padding: 12px 14px; background: var(--accent-soft); border: 1px solid rgba(29,95,167,.10); border-radius: 16px; color: var(--muted); }
.fit-list b { color: var(--ink); }
.affiliate-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.affiliate-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.affiliate-mini-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(16,32,39,.05);
}
.affiliate-mini-grid span { color: var(--brand-2); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.affiliate-mini-grid p { color: var(--muted); }
.affiliate-mini-grid a { color: var(--brand); font-weight: 800; text-decoration: none; }
.connector-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.connector-panel p { color: var(--muted); }
.connector-steps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.connector-steps article { background: var(--surface-2); border: 1px solid rgba(29,95,167,.10); border-radius: 18px; padding: 18px; }
.connector-steps strong { color: var(--brand-2); }
.connector-steps h3 { font-size: 22px; margin-top: 6px; }
.connector-steps p { margin-bottom: 0; }
@media (max-width: 860px) {
  .affiliate-preview-band,
  .connector-panel { grid-template-columns: 1fr; }
  .affiliate-decision-grid,
  .affiliate-mini-grid,
  .connector-steps { grid-template-columns: 1fr; }
  .affiliate-preview-band .btn { width: 100%; }
}

/* Logo final Intégralo: monograma claro con acento, sin símbolos confusos */
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #071b33 0%, #1d5fa7 58%, #42b7ff 100%);
  box-shadow: 0 10px 26px rgba(11,37,72,.26), inset 0 1px 0 rgba(255,255,255,.22);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* CTAs editoriales sutiles: visibles sin parecer agresivos */
.intent-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.intent-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(29,95,167,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16,32,39,.045);
}
.intent-pill:hover { background: #fff; border-color: rgba(29,95,167,.34); transform: translateY(-1px); }
.inline-decision-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(29,95,167,.22);
}
.inline-decision-link:hover { border-bottom-color: currentColor; }
.subtle-choice-box {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(237,248,255,.72));
}
.subtle-choice-box p { margin: 0 0 12px; color: var(--muted); }
.subtle-choice-box strong { color: var(--ink); }
@media (max-width: 680px) {
  .intent-pill { width: 100%; justify-content: center; }
}

/* Logo Intégralo inspirado en el icono de referencia: tecnología + integración */
.logo-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: transparent;
  background:
    radial-gradient(circle at 72% 72%, rgba(66,183,255,.30), transparent 48%),
    linear-gradient(135deg, #00338f 0%, #0055d8 58%, #0073ff 100%);
  box-shadow: 0 10px 26px rgba(0,64,170,.25), inset 0 1px 0 rgba(255,255,255,.20);
  font-size: 0;
  line-height: 1;
}
.logo-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 31px;
  transform: translate(-50%, -50%);
  background: #fff;
  clip-path: polygon(18% 0, 82% 0, 100% 14%, 70% 14%, 70% 86%, 100% 86%, 82% 100%, 18% 100%, 0 86%, 30% 86%, 30% 14%, 0 14%);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.04));
}
.logo-trace,
.logo-node { position: absolute; z-index: 2; pointer-events: none; }
.logo-trace::before,
.logo-trace::after {
  content: "";
  position: absolute;
  background: #0055d8;
  border-radius: 999px;
}
.logo-trace-a { left: 19px; bottom: 12px; width: 10px; height: 18px; }
.logo-trace-a::before { left: 0; bottom: 0; width: 2px; height: 13px; }
.logo-trace-a::after { left: 0; top: 2px; width: 9px; height: 2px; transform: rotate(-34deg); transform-origin: left center; }
.logo-trace-b { left: 24px; bottom: 12px; width: 12px; height: 22px; }
.logo-trace-b::before { left: 0; bottom: 0; width: 2px; height: 17px; }
.logo-trace-b::after { left: 0; top: 1px; width: 10px; height: 2px; transform: rotate(34deg); transform-origin: left center; }
.logo-node {
  width: 5px;
  height: 5px;
  border-radius: 1.5px;
  background: #f7b51d;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}
.logo-node-a { left: 15px; top: 18px; }
.logo-node-b { left: 31px; top: 12px; }

/* Logo exacto desde imagen enviada por Ayub */
.logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: none;
  box-shadow: 0 10px 26px rgba(0,64,170,.18);
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
